mirror of
https://github.com/cc65/cc65.git
synced 2025-08-09 13:25:06 +00:00
Added missing parentheses.
A function call had looked like a function pointer (which caused an incompatible comparison).
This commit is contained in:
@@ -110,7 +110,7 @@ int main (void)
|
||||
J = 0;
|
||||
}
|
||||
}
|
||||
if (kbhit() && ReadUpperKey == 'Q') {
|
||||
if (kbhit() && ReadUpperKey () == 'Q') {
|
||||
break;
|
||||
}
|
||||
}
|
||||
|
Reference in New Issue
Block a user