diff options
Diffstat (limited to 'engines')
-rw-r--r-- | engines/scumm/he/logic_he.cpp | 36 | ||||
-rw-r--r-- | engines/scumm/he/logic_he.h | 6 |
2 files changed, 42 insertions, 0 deletions
diff --git a/engines/scumm/he/logic_he.cpp b/engines/scumm/he/logic_he.cpp index 7620cf61cb..bdb48f70ed 100644 --- a/engines/scumm/he/logic_he.cpp +++ b/engines/scumm/he/logic_he.cpp @@ -923,4 +923,40 @@ int LogicHEsoccer::op_1006(int32 *args) { return 1; } +int LogicHEsoccer::op_1007(int32 *args) { + // TODO: Used when the HE logo is shown + + return 1; +} + +int LogicHEsoccer::op_1008(int32 *args) { + // TODO: Used during a match (kicking?) + + return 1; +} + +int LogicHEsoccer::op_1012(int32 *args) { + // TODO: Used after op_1019 + + return 1; +} + +int LogicHEsoccer::op_1014(int32 *args) { + // TODO: Used many times during a match + + return 1; +} + +int LogicHEsoccer::op_1019(int32 *args) { + // TODO: Used at the beginning of a match + + return 1; +} + +int LogicHEsoccer::op_1021(int32 *args) { + // TODO: Used during a match (ball movement?) + + return 1; +} + } // End of namespace Scumm diff --git a/engines/scumm/he/logic_he.h b/engines/scumm/he/logic_he.h index f9e59f7db6..96de40f287 100644 --- a/engines/scumm/he/logic_he.h +++ b/engines/scumm/he/logic_he.h @@ -127,6 +127,12 @@ private: int op_1003(int32 *args); int op_1004(int32 *args); int op_1006(int32 *args); + int op_1007(int32 *args); + int op_1008(int32 *args); + int op_1012(int32 *args); + int op_1014(int32 *args); + int op_1019(int32 *args); + int op_1021(int32 *args); }; } // End of namespace Scumm |