Cleanup: Got rid of _quit and _rtl variables in engine.h/.cpp which are not used anymore. Found some _quit flags in Agos and Gob and replaced with bool quit() where appropriate

svn-id: r33848
This commit is contained in:
Christopher Page 2008-08-13 20:45:00 +00:00
parent 2d31207a81
commit 8d8c46e36f
14 changed files with 27 additions and 31 deletions

View file

@ -338,7 +338,7 @@ void AGOSEngine_Simon1::os1_pauseGame() {
break;
}
while (!_quit) {
while (!quit()) {
delay(1);
if (_keyPressed.keycode == keyYes)
quitGame();