Added missing parentheses.

A function call had looked like a function pointer (which caused an incompatible comparison).
This commit is contained in:
Greg King 2015-10-17 11:53:16 -04:00
parent 76a5a72403
commit f94945308f
1 changed files with 1 additions and 1 deletions

View File

@ -110,7 +110,7 @@ int main (void)
J = 0;
}
}
if (kbhit() && ReadUpperKey == 'Q') {
if (kbhit() && ReadUpperKey () == 'Q') {
break;
}
}