From 0bc192bffbf28ba5733ae955916e5ebc72f3641f Mon Sep 17 00:00:00 2001 From: Ian C Date: Mon, 5 Jul 2021 19:29:54 +0000 Subject: Initial working version. Still todo : Tapes, Sound --- source/gui.c | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) (limited to 'source/gui.c') diff --git a/source/gui.c b/source/gui.c index 1d14fa3..604f910 100644 --- a/source/gui.c +++ b/source/gui.c @@ -850,7 +850,7 @@ int GUI_InputName(const char *prompt, const char *ext, char name[], int maxlen) FB_Print(&upper, "PRESS ENTER TO ACCEPT", 0, 32, COL_BLACK, COL_TRANSPARENT); - FB_Print(&upper, "PRESS PERIOD TO BACKSPACE", 0, 40, + FB_Print(&upper, "PRESS SYMBOL SHIFT TO BACKSPACE", 0, 40, COL_BLACK, COL_TRANSPARENT); FB_Print(&upper, "PRESS SPACE/BREAK TO CANCEL", 0, 48, COL_BLACK, COL_TRANSPARENT); @@ -869,7 +869,7 @@ int GUI_InputName(const char *prompt, const char *ext, char name[], int maxlen) switch(ev.key) { - case SK_PERIOD: + case SK_SYMBOL: if (l) { name[--l] = 0; -- cgit v1.2.3