aboutsummaryrefslogtreecommitdiff
path: root/engines/cine
diff options
context:
space:
mode:
authorathrxx2019-06-21 14:18:03 +0200
committerathrxx2019-06-21 14:19:42 +0200
commit80f163b0fc7fc033aa99b829f626784804bf5176 (patch)
treeb2fb2b2040a5bda107ea9b2576f8d96a262a03f1 /engines/cine
parent08dba769f10ace19e46555eddb957ec7d508f58d (diff)
downloadscummvm-rg350-80f163b0fc7fc033aa99b829f626784804bf5176.tar.gz
scummvm-rg350-80f163b0fc7fc033aa99b829f626784804bf5176.tar.bz2
scummvm-rg350-80f163b0fc7fc033aa99b829f626784804bf5176.zip
ALL: revert accidental commits
Diffstat (limited to 'engines/cine')
-rw-r--r--engines/cine/script_fw.cpp24
1 files changed, 1 insertions, 23 deletions
diff --git a/engines/cine/script_fw.cpp b/engines/cine/script_fw.cpp
index 9692c54b7b..86eb709d5a 100644
--- a/engines/cine/script_fw.cpp
+++ b/engines/cine/script_fw.cpp
@@ -707,29 +707,7 @@ int FWScript::execute() {
if (_script._size) {
while (!ret) {
-
- if (g_cine->getGameType() == Cine::GType_OS) {
- if (_pos == 0x0f9a) {
- if (!scumm_stricmp(currentPrcName, "AUTO00.PRC"))
- g_cine->_globalVars[200] = g_cine->_objectTable[235].costume;
- }
- } else {
- if (_pos == 0x2c) {
- if (g_cine->_objectTable[1].x == 0x0131) {
- if (!scumm_stricmp(currentPrcName, "TOTO.PRC"))
- g_cine->_objectTable[2].x = 0x02;
- }
- } /*else if (!scumm_stricmp(currentPrcName, "CODE2.PRC")) {
- if (_pos == 1) {
- //globalVars[0] = objectTable[scriptElement->scriptPtr[6]].frame;
- } else if (_pos == 504) {
- //_currentScriptElement->localVars[1] = _currentScriptElement->localVars[2] = 0;
- //globalVars[251] = 0;
- g_cine->_globalVars[251] = g_cine->_globalVars[251];
- }
- }*/
- }
-
+ _line = _pos;
byte opcode = getNextByte();
OpFunc handler = _info->opcodeHandler(opcode);