1
0
mirror of https://github.com/cc65/cc65.git synced 2025-03-13 15:32:09 +00:00

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:
cuz 2006-04-07 17:49:38 +00:00
parent 155dc9c653
commit 889fd1ecbd

View File

@ -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;