Sure there are computers with no sound card or maybe the drivers are not installed correctly etc.
This section allows you to view all posts made by this member. Note that you can only see posts made in areas you currently have access to.
Show posts Menu
function noloopcheck pause_game() {
bool cont;
while (!cont) {
if (!IsKeyPressed(32)) cont=true;
} // wait for the user to release the key
while (cont) {
if (IsKeyPressed(32)) cont=false;
} // wait for the user to press the key
while (!cont) {
if (!IsKeyPressed(32)) cont=true;
} // wait for the user to release the key
gPaused.Visible=false;
}
function repeatedly_execute_always() {
if (gPaused.Visible)
pause_game();
if (IsKeyPressed(32))
gPaused.Visible=true;
}
By continuing to use this site you agree to the use of cookies. Please visit this page to see exactly how we use these.
Page created in 0.041 seconds with 16 queries.