diff options
author | Jonathan Gray | 2004-06-23 10:47:14 +0000 |
---|---|---|
committer | Jonathan Gray | 2004-06-23 10:47:14 +0000 |
commit | 615f0e4b47af7fc4943cdf15f75437d4888b5222 (patch) | |
tree | 6aff884d55525bffafa06853a112653f6c188b09 /scumm | |
parent | 755efffd78f02546fdbad7cae68b1254ead7e3c7 (diff) | |
download | scummvm-rg350-615f0e4b47af7fc4943cdf15f75437d4888b5222.tar.gz scummvm-rg350-615f0e4b47af7fc4943cdf15f75437d4888b5222.tar.bz2 scummvm-rg350-615f0e4b47af7fc4943cdf15f75437d4888b5222.zip |
for whatever reason hev7 gives us a 244 for quit instead of 160
svn-id: r14017
Diffstat (limited to 'scumm')
-rw-r--r-- | scumm/script_v6.cpp | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/scumm/script_v6.cpp b/scumm/script_v6.cpp index b03bf4a20e..9c2e2c0e2f 100644 --- a/scumm/script_v6.cpp +++ b/scumm/script_v6.cpp @@ -2276,6 +2276,7 @@ void ScummEngine_v6::o6_quitPauseRestart() { pauseGame(); break; case 160: // SO_QUIT + case 244: // hev7 quit shutDown(); break; default: @@ -3201,3 +3202,4 @@ void ScummEngine_v6::decodeParseString(int m, int n) { } } // End of namespace Scumm + |