fix correct way of reading keyboard

This commit is contained in:
nino-porcino 2021-12-08 21:59:35 +01:00
parent 4c87d1f47a
commit c64d985364
1 changed files with 1 additions and 1 deletions

View File

@ -55,7 +55,7 @@ void woz_mon() {
// returns nonzero if a key has been pressed
inline byte keypressed() {
#ifdef APPLE1
return PEEK(KEY_DATA) & 0x80;
return PEEK(KEY_CTRL) & 0x80;
#else
return 0;
#endif