Browse Source

change sleeptime in pause to keep game responsive

main
fdai7184 2 years ago
parent
commit
327be1685f
  1. 2
      src/input.c

2
src/input.c

@ -64,7 +64,7 @@ void getInput(){
pause(){ pause(){
while(getch()!='p'){ while(getch()!='p'){
sleep(1);
sleep(0.10);
} }
} }

Loading…
Cancel
Save