From 7fad5946851e40f65ccdd24d68ab6e1fc540d920 Mon Sep 17 00:00:00 2001 From: Pasi Kallinen Date: Sat, 12 Jan 2008 22:51:12 +0000 Subject: [PATCH] Tweak some messages given to user git-svn-id: svn://katsu.triplehelix.org/dgamelaunch/trunk@407 db0b04b0-f4d1-0310-9a6d-de3e77497b0e --- dgamelaunch.c | 20 ++++++++++++-------- 1 file changed, 12 insertions(+), 8 deletions(-) diff --git a/dgamelaunch.c b/dgamelaunch.c index fa3c92a..1800a4a 100644 --- a/dgamelaunch.c +++ b/dgamelaunch.c @@ -373,7 +373,7 @@ inprogressmenu (int gameid) mvprintw (3, 1, "During playback, hit 'q' to return here, 'm' to send mail (requires login),"); mvaddstr (4, 1, - "'s' to toggle graphic-set stripping for DEC, IBM, and none."); + "'s' to toggle graphic-set stripping for DEC, IBM, and none (default)."); mvaddstr (5, 1, "The following games are in progress: (use uppercase to try to change size)"); /* clean old games and list good ones */ @@ -699,8 +699,9 @@ domailuser (char *username) if (mail_empty) { - mvaddstr (9, 1, "This scroll appears to be blank.--More--"); + mvaddstr (9, 1, "This scroll appears to be blank."); mvaddstr (10, 1, "(Aborting your message.)"); + mvaddstr (12, 1, "--More--"); getch (); return; } @@ -708,23 +709,26 @@ domailuser (char *username) if ((user_spool = fopen (spool_fn, "a")) == NULL) { mvaddstr (9, 1, - "You fall into the water! You sink like a rock.--More--"); + "You fall into the water! You sink like a rock."); mvprintw (10, 1, - "(I couldn't open %s'%c spool file for some reason, so I'm giving up.)", + "(Couldn't open %s'%c spool file. Aborting.)", username, (username[strlen (username) - 1] != 's') ? 's' : 0); + mvaddstr (12, 1, "--More--"); getch (); return; } - mvaddstr (9, 1, "Getting a lock on the mailspool..."); + mvaddstr (9, 1, "Sending your scroll..."); refresh (); + /* Getting a lock on the mailspool... */ while (fcntl (fileno (user_spool), F_SETLK, &fl) == -1) { if (errno != EAGAIN) { mvaddstr (10, 1, - "Received a weird error from fcntl, so I'm giving up."); + "(Received a weird error from fcntl. Aborting.)"); + mvaddstr (12, 1, "--More--"); getch (); return; } @@ -740,8 +744,8 @@ domailuser (char *username) fclose (user_spool); - mvaddstr (9, 1, "Message sent successfully "); - move(9, 26); /* Pedantry! */ + mvaddstr (9, 1, "Scroll delivered! "); + move(9, 19); /* Pedantry! */ refresh (); sleep (2);