got rid of gamerun bool bc bool is not in the c99 standard
This commit is contained in:
parent
3af2f2fd21
commit
0cdfba6197
1 changed files with 2 additions and 2 deletions
|
@ -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
|
//TODO nuke bools they arnt part of the c99 standard
|
||||||
//here it js being stolen from curses
|
//here it js being stolen from curses
|
||||||
bool gamerun = true;
|
int gamerun = 1;
|
||||||
|
|
||||||
|
|
||||||
zom_scrinit();
|
zom_scrinit();
|
||||||
|
@ -123,7 +123,7 @@ int main( int argc, char *argv[] ) { //yoinked from the internet argc is number
|
||||||
break;
|
break;
|
||||||
|
|
||||||
case 'q':
|
case 'q':
|
||||||
gamerun = false;
|
gamerun = 0;
|
||||||
break;
|
break;
|
||||||
case 't':
|
case 't':
|
||||||
player.x = 9;
|
player.x = 9;
|
||||||
|
|
Loading…
Reference in a new issue