mirror of
https://github.com/cc65/cc65.git
synced 2025-08-08 06:25:17 +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;
|
J = 0;
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
if (kbhit() && ReadUpperKey == 'Q') {
|
if (kbhit() && ReadUpperKey () == 'Q') {
|
||||||
break;
|
break;
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
Reference in New Issue
Block a user