From: cuz Date: Fri, 7 Apr 2006 17:49:38 +0000 (+0000) Subject: The Apple2 has only upper case chars. X-Git-Tag: V2.12.0~133 X-Git-Url: https://git.sur5r.net/?a=commitdiff_plain;h=889fd1ecbdb5b849cb4a98b3ca9253cb85943a2e;p=cc65 The Apple2 has only upper case chars. git-svn-id: svn://svn.cc65.org/cc65/trunk@3722 b7a2c559-68d2-44c3-8de9-860c34a00d81 --- diff --git a/samples/mousedemo.c b/samples/mousedemo.c index e3170dab3..c8dc6302c 100644 --- a/samples/mousedemo.c +++ b/samples/mousedemo.c @@ -156,8 +156,8 @@ int main (void) Done = 0; ShowState (Invisible = 1); while (!Done) { - if (kbhit()) { - switch (cgetc()) { + if (kbhit ()) { + switch (tolower (cgetc ())) { case 'd': BREAK(); break;