From 96651fe764aa782f63539081198f91d6e120e45b Mon Sep 17 00:00:00 2001 From: hubertf Date: Wed, 18 Aug 1999 01:39:16 +0000 Subject: [PATCH] Make phrase to enter password again clearer --- games/phantasia/main.c | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/games/phantasia/main.c b/games/phantasia/main.c index b571be74c554..11cee82f2e29 100644 --- a/games/phantasia/main.c +++ b/games/phantasia/main.c @@ -1,4 +1,4 @@ -/* $NetBSD: main.c,v 1.5 1998/08/30 09:19:39 veego Exp $ */ +/* $NetBSD: main.c,v 1.6 1999/08/18 01:39:16 hubertf Exp $ */ /* * Phantasia 3.3.2 -- Interterminal fantasy game @@ -383,7 +383,7 @@ rollnewplayer() do { mvaddstr(20, 0, "Give your character a password [up to 8 characters] ? "); getstring(Player.p_password, SZ_PASSWORD); - mvaddstr(21, 0, "One more time to verify ? "); + mvaddstr(21, 0, "Enter again to verify: "); getstring(Databuf, SZ_PASSWORD); } while (strcmp(Player.p_password, Databuf) != 0);