got rid of gamerun bool bc bool is not in the c99 standard

This commit is contained in:
zombie maniac 2022-03-14 00:54:37 -04:00
parent 3af2f2fd21
commit 0cdfba6197
Signed by: nbrooks211
GPG key ID: F43C85C0DF0C334E

View file

@ -80,7 +80,7 @@ int main( int argc, char *argv[] ) { //yoinked from the internet argc is number
//TODO nuke bools they arnt part of the c99 standard
//here it js being stolen from curses
bool gamerun = true;
int gamerun = 1;
zom_scrinit();
@ -123,7 +123,7 @@ int main( int argc, char *argv[] ) { //yoinked from the internet argc is number
break;
case 'q':
gamerun = false;
gamerun = 0;
break;
case 't':
player.x = 9;