aboutsummaryrefslogtreecommitdiff
path: root/engines/gob/gob.cpp
diff options
context:
space:
mode:
Diffstat (limited to 'engines/gob/gob.cpp')
-rw-r--r--engines/gob/gob.cpp3
1 files changed, 2 insertions, 1 deletions
diff --git a/engines/gob/gob.cpp b/engines/gob/gob.cpp
index 6fd6255a9a..7fa54445f6 100644
--- a/engines/gob/gob.cpp
+++ b/engines/gob/gob.cpp
@@ -197,7 +197,6 @@ int GobEngine::init() {
_cdrom = new CDROM(this);
_dataio = new DataIO(this);
_goblin = new Goblin(this);
- _init = new Init(this);
_map = new Map(this);
_pack = new Pack();
_palanim = new PalAnim(this);
@@ -211,6 +210,7 @@ int GobEngine::init() {
_draw = new Draw_v1(this);
_game = new Game_v1(this);
_video = new Video_v1(this);
+ _init = new Init_v1(this);
}
else if (_features & Gob::GF_GOB2) {
_inter = new Inter_v2(this);
@@ -219,6 +219,7 @@ int GobEngine::init() {
_draw = new Draw_v2(this);
_game = new Game_v2(this);
_video = new Video_v2(this);
+ _init = new Init_v2(this);
}
else
error("GobEngine::init(): Unknown version of game engine");