diff options
author | Paweł Kołodziejski | 2003-03-08 14:42:59 +0000 |
---|---|---|
committer | Paweł Kołodziejski | 2003-03-08 14:42:59 +0000 |
commit | e4b59860b4e1ac8d85104c6e85bab4e3efa18f21 (patch) | |
tree | bcf1a5b46fe173bd5e230d7f86b94adfc10fbff0 | |
parent | d24df8ff7a9916cb451779ef57716e7fdba2076c (diff) | |
download | scummvm-rg350-e4b59860b4e1ac8d85104c6e85bab4e3efa18f21.tar.gz scummvm-rg350-e4b59860b4e1ac8d85104c6e85bab4e3efa18f21.tar.bz2 scummvm-rg350-e4b59860b4e1ac8d85104c6e85bab4e3efa18f21.zip |
added opcode 124 in kernelSetFunctions
svn-id: r6774
-rw-r--r-- | scumm/script_v6.cpp | 3 |
1 files changed, 1 insertions, 2 deletions
diff --git a/scumm/script_v6.cpp b/scumm/script_v6.cpp index a1c5c3e5df..b482f22a54 100644 --- a/scumm/script_v6.cpp +++ b/scumm/script_v6.cpp @@ -2485,8 +2485,7 @@ void Scumm_v6::o6_kernelSetFunctions() { warning("o6_kernelSetFunctions: stub120(%d,%d)", args[1], args[2]); break; case 124: - // FIXME: isn't it likely that this does the same as the pre-V7 opcode with the same id? - warning("o6_kernelSetFunctions: stub124(%d)", args[1]); + _saveSound = args[1]; break; } } else { |