aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--engines/hdb/hdb.cpp6
1 files changed, 3 insertions, 3 deletions
diff --git a/engines/hdb/hdb.cpp b/engines/hdb/hdb.cpp
index e92aab3c92..a0c92d2640 100644
--- a/engines/hdb/hdb.cpp
+++ b/engines/hdb/hdb.cpp
@@ -77,12 +77,12 @@ bool HDBGame::init() {
if (!_fileMan->openMPC(getGameFile())) {
error("FileMan::openMPC: Cannot find the hyperspace.mpc data file.");
}
- if (!_ai->init()) {
- error("AI::init: Couldn't initialize AI");
- }
if (!_drawMan->init()) {
error("DrawMan::init: Couldn't initialize DrawMan");
}
+ if (!_ai->init()) {
+ error("AI::init: Couldn't initialize AI");
+ }
if (!_lua->init()) {
error("LuaScript::init: Couldn't load the GLOBAL_LUA code.");
}