[Scummvm-cvs-logs] scummvm-tools master -> 34a8948e3721066dd6d42e424e2cb8151251f2b1
Strangerke
Strangerke at scummvm.org
Tue Jan 5 00:34:43 CET 2016
This automated email contains information about 1 new commit which have been
pushed to the 'scummvm-tools' repo located at https://github.com/scummvm/scummvm-tools .
Summary:
34a8948e37 TOOLS: Silent an compilation error by initialize OpcodeGoblinEntryLittleRed array with empty opcodes
Commit: 34a8948e3721066dd6d42e424e2cb8151251f2b1
https://github.com/scummvm/scummvm-tools/commit/34a8948e3721066dd6d42e424e2cb8151251f2b1
Author: Strangerke (strangerke at scummvm.org)
Date: 2016-01-05T00:28:16+01:00
Commit Message:
TOOLS: Silent an compilation error by initialize OpcodeGoblinEntryLittleRed array with empty opcodes
Changed paths:
engines/gob/degob_script_littlered.cpp
diff --git a/engines/gob/degob_script_littlered.cpp b/engines/gob/degob_script_littlered.cpp
index 8d8b837..8b49665 100644
--- a/engines/gob/degob_script_littlered.cpp
+++ b/engines/gob/degob_script_littlered.cpp
@@ -477,7 +477,18 @@ void Script_LittleRed::setupOpcodes() {
{OPCODET(oLittleRed_DOSInterrupt1), {PARAM_NONE}},
{OPCODET(oLittleRed_DOSInterrupt2), {PARAM_NONE}},
{OPCODET(oLittleRed_playProtracker), {PARAM_NONE}},
- {OPCODET(o2_stopProtracker), {PARAM_NONE}}
+ {OPCODET(o2_stopProtracker), {PARAM_NONE}},
+ {TYPE_NONE, 0, 0, {PARAM_NONE}},
+ {TYPE_NONE, 0, 0, {PARAM_NONE}},
+ {TYPE_NONE, 0, 0, {PARAM_NONE}},
+ {TYPE_NONE, 0, 0, {PARAM_NONE}},
+ {TYPE_NONE, 0, 0, {PARAM_NONE}},
+ {TYPE_NONE, 0, 0, {PARAM_NONE}},
+ {TYPE_NONE, 0, 0, {PARAM_NONE}},
+ {TYPE_NONE, 0, 0, {PARAM_NONE}},
+ {TYPE_NONE, 0, 0, {PARAM_NONE}},
+ {TYPE_NONE, 0, 0, {PARAM_NONE}},
+ {TYPE_NONE, 0, 0, {PARAM_NONE}}
};
_opcodesDrawLittleRed = opcodesDraw;
More information about the Scummvm-git-logs
mailing list