The Apple2 has only upper case chars.
git-svn-id: svn://svn.cc65.org/cc65/trunk@3722 b7a2c559-68d2-44c3-8de9-860c34a00d81
This commit is contained in:
@@ -156,8 +156,8 @@ int main (void)
|
|||||||
Done = 0;
|
Done = 0;
|
||||||
ShowState (Invisible = 1);
|
ShowState (Invisible = 1);
|
||||||
while (!Done) {
|
while (!Done) {
|
||||||
if (kbhit()) {
|
if (kbhit ()) {
|
||||||
switch (cgetc()) {
|
switch (tolower (cgetc ())) {
|
||||||
case 'd':
|
case 'd':
|
||||||
BREAK();
|
BREAK();
|
||||||
break;
|
break;
|
||||||
|
|||||||
Reference in New Issue
Block a user