Skip to content

Commit

Permalink
HOPKINS: Fix exiting game when displaying Breakout high score table
Browse files Browse the repository at this point in the history
  • Loading branch information
dreammaster committed Nov 30, 2012
1 parent 5bc9566 commit d45b22f
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion engines/hopkins/computer.cpp
Expand Up @@ -873,7 +873,7 @@ int ComputerManager::HIGHT_SCORE() {
&& (uint16)(v0 - 176) <= 0xDu)
v3 = 2;
_vm->_eventsManager.VBL();
} while (!v3);
} while (!v3 && !_vm->shouldQuit());
_vm->_eventsManager.MOUSE_OFF();
_vm->_graphicsManager.FADE_OUT_CASSE();
_vm->_globals.LIBERE_FICHIER(ptr);
Expand Down

0 comments on commit d45b22f

Please sign in to comment.