summaryrefslogtreecommitdiffstats
path: root/mbbsd/stuff.c
diff options
context:
space:
mode:
Diffstat (limited to 'mbbsd/stuff.c')
-rw-r--r--mbbsd/stuff.c8
1 files changed, 4 insertions, 4 deletions
diff --git a/mbbsd/stuff.c b/mbbsd/stuff.c
index 4e5fa46c..ab542695 100644
--- a/mbbsd/stuff.c
+++ b/mbbsd/stuff.c
@@ -412,13 +412,13 @@ vmsg_lines(const int lines, const char msg[])
if (msg)
outs((char *)msg);
else
- outs("\033[46;1m \033[37m"
+ outs("\033[45;1m \033[37m"
"\033[200m\033[1431m\033[506m□ 請按 \033[33m(Space/Return)\033[37m 繼續 □\033[201m (^T) 收到暫存檔 \033[m");
- ch = igetch();
- if (ch == Ctrl('T')) {
+ do {
+ if( (ch = igetch()) == Ctrl('T') )
capture_screen();
- }
+ } while( (ch != ' ') && (ch != KEY_LEFT) && (ch != '\r') && (ch != '\n') );
move(lines, 0);
clrtoeol();