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