diff options
author | Ian C <ianc@noddybox.co.uk> | 2021-07-05 19:29:54 +0000 |
---|---|---|
committer | Ian C <ianc@noddybox.co.uk> | 2021-07-05 19:29:54 +0000 |
commit | 0bc192bffbf28ba5733ae955916e5ebc72f3641f (patch) | |
tree | cb68ae6e3785b2f712e3c639f687580fe75f5806 /source/gui.c | |
parent | 25a57883291bc89210edbd3670e5548a0b838913 (diff) |
Initial working version. Still todo : Tapes, Sound
Diffstat (limited to 'source/gui.c')
-rw-r--r-- | source/gui.c | 4 |
1 files changed, 2 insertions, 2 deletions
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; |