aboutsummaryrefslogtreecommitdiff
path: root/engines/agos/agos.cpp
diff options
context:
space:
mode:
authorTravis Howell2009-09-24 03:41:45 +0000
committerTravis Howell2009-09-24 03:41:45 +0000
commit48cce58ab52abccbd7df7665d70a551ddfcca989 (patch)
tree90ce2cd367d9d3b15cf4fb396ef5c5e3ef38907c /engines/agos/agos.cpp
parent2c438b43045484ffa7c2bcc6db7c6f4b4cc28be4 (diff)
downloadscummvm-rg350-48cce58ab52abccbd7df7665d70a551ddfcca989.tar.gz
scummvm-rg350-48cce58ab52abccbd7df7665d70a551ddfcca989.tar.bz2
scummvm-rg350-48cce58ab52abccbd7df7665d70a551ddfcca989.zip
Split the script opcode table for DIMP, since it doesn't match(ie timers) other Puzzle Pack games.
svn-id: r44285
Diffstat (limited to 'engines/agos/agos.cpp')
-rw-r--r--engines/agos/agos.cpp14
1 files changed, 9 insertions, 5 deletions
diff --git a/engines/agos/agos.cpp b/engines/agos/agos.cpp
index b9de7b7a05..4f4c6fc0a2 100644
--- a/engines/agos/agos.cpp
+++ b/engines/agos/agos.cpp
@@ -60,19 +60,23 @@ static const GameSpecificSettings puzzlepack_settings = {
};
#ifdef ENABLE_AGOS2
-AGOSEngine_PuzzlePack::AGOSEngine_PuzzlePack(OSystem *system)
- : AGOSEngine_Feeble(system) {
+AGOSEngine_DIMP::AGOSEngine_DIMP(OSystem *system)
+ : AGOSEngine_PuzzlePack(system) {
- _oopsValid = false;
_iconToggleCount = 0;
_voiceCount = 0;
- _gameTime = 0;
_lastTickCount = 0;
- _thisTickCount = 0;
_startSecondCount = 0;
_tSecondCount = 0;
}
+
+AGOSEngine_PuzzlePack::AGOSEngine_PuzzlePack(OSystem *system)
+ : AGOSEngine_Feeble(system) {
+
+ _oopsValid = false;
+ _gameTime = 0;
+}
#endif
AGOSEngine_Simon2::AGOSEngine_Simon2(OSystem *system)