for v2 games, make space the pause key

svn-id: r7590
This commit is contained in:
Max Horn 2003-05-17 00:37:53 +00:00
parent 58ab6d5039
commit 6ed1d415b5

View file

@ -1748,7 +1748,8 @@ void Scumm::processKbd() {
return;
}
if (VAR_PAUSE_KEY != 0xFF && _lastKeyHit == VAR(VAR_PAUSE_KEY)) {
if ((VAR_PAUSE_KEY != 0xFF && _lastKeyHit == VAR(VAR_PAUSE_KEY)) ||
(VAR_PAUSE_KEY == 0xFF && _lastKeyHit == ' ')) {
pauseGame(true);
/* pause */
return;