Ewan Meadows
unread,Nov 13, 2013, 7:27:38 AM11/13/13Sign in to reply to author
Sign in to forward
You do not have permission to delete messages in this group
Either email addresses are anonymous for this group or you need the view member email addresses permission to view the original message
to fre...@googlegroups.com
Spotted another bug a while ago, this time to do with the high score
entry. It seems to show the wrong letter when you are entering the
high score initials:
diff --git a/common/initials.c b/common/initials.c
index 23acdc5..c0a80b6 100644
--- a/common/initials.c
+++ b/common/initials.c
@@ -45,7 +45,11 @@ static const unsigned char initial_chars[] = "ABCDEFGHIJKLMNO
#endif
#define MAX_INITIAL_INITIAL (sizeof (initial_chars) - MAX_LETTERS_SHOWN)
+#if (MACHINE_ALPHANUMERIC == 1)
+#define SELECT_OFFSET 0
+#else
#define SELECT_OFFSET 2
+#endif
#define FONT_WIDTH 8
#define ALPHABET_LEN 32