diff options
author | D G Turner | 2011-03-16 22:39:42 +0000 |
---|---|---|
committer | D G Turner | 2011-03-16 22:39:42 +0000 |
commit | 53426e6ed761808420f8b153fa7ceba5bdf010a0 (patch) | |
tree | f18eafa07ece5fc3d997ae41d858121ad73c8ce1 /engines/cine | |
parent | 454bad69e998a8007938e0505f5fafe4e3b06eaf (diff) | |
download | scummvm-rg350-53426e6ed761808420f8b153fa7ceba5bdf010a0.tar.gz scummvm-rg350-53426e6ed761808420f8b153fa7ceba5bdf010a0.tar.bz2 scummvm-rg350-53426e6ed761808420f8b153fa7ceba5bdf010a0.zip |
CINE: Add Opcode 0x40 (o1_closePart) to Operation Stealth.
This silences the warnings and a basic playtest has shown no issues.
Diffstat (limited to 'engines/cine')
-rw-r--r-- | engines/cine/script_os.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/engines/cine/script_os.cpp b/engines/cine/script_os.cpp index ab1ad7ff9c..9ee3a892a9 100644 --- a/engines/cine/script_os.cpp +++ b/engines/cine/script_os.cpp @@ -124,7 +124,7 @@ void OSScript::setupTable() { { 0, 0 }, { &FWScript::o2_loadPart, "s" }, /* 40 */ - { 0, 0 }, /* o1_closePart, triggered by some scripts (STARTA.PRC 4 for ex.) */ + { &FWScript::o1_closePart, "" }, { &FWScript::o1_loadNewPrcName, "bs" }, { &FWScript::o1_requestCheckPendingDataLoad, "" }, { 0, 0 }, |