From 6ed1d415b5da1830ead0fa91760751b78893628a Mon Sep 17 00:00:00 2001 From: Max Horn Date: Sat, 17 May 2003 00:37:53 +0000 Subject: for v2 games, make space the pause key svn-id: r7590 --- scumm/scummvm.cpp | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) (limited to 'scumm') diff --git a/scumm/scummvm.cpp b/scumm/scummvm.cpp index 15a007b24b..2de0097222 100644 --- a/scumm/scummvm.cpp +++ b/scumm/scummvm.cpp @@ -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; -- cgit v1.2.3