diff options
author | Max Horn | 2005-03-22 17:49:41 +0000 |
---|---|---|
committer | Max Horn | 2005-03-22 17:49:41 +0000 |
commit | a2ac6c9796006b1eabe81cea86c8d6548f5a2b4a (patch) | |
tree | 1899e587bff503cebeba4a5c67a07d687cb2c991 /scumm | |
parent | 097a3a0aacbeeba4a87332a2fabe3b9e38a821cb (diff) | |
download | scummvm-rg350-a2ac6c9796006b1eabe81cea86c8d6548f5a2b4a.tar.gz scummvm-rg350-a2ac6c9796006b1eabe81cea86c8d6548f5a2b4a.tar.bz2 scummvm-rg350-a2ac6c9796006b1eabe81cea86c8d6548f5a2b4a.zip |
Proper check
svn-id: r17193
Diffstat (limited to 'scumm')
-rw-r--r-- | scumm/input.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/scumm/input.cpp b/scumm/input.cpp index 7c8b87ed20..d94f51b9dc 100644 --- a/scumm/input.cpp +++ b/scumm/input.cpp @@ -332,7 +332,7 @@ void ScummEngine::processKbd(bool smushMode) { _lastKeyHit = (uint)VAR(VAR_CUTSCENEEXIT_KEY); else // Skip talk - if (_version >= 5 && _talkDelay > 0) + if (VAR_TALKSTOP_KEY != 0xFF && _talkDelay > 0) _lastKeyHit = (uint)VAR(VAR_TALKSTOP_KEY); else // Escape |