diff options
-rw-r--r-- | engines/hdb/hdb.cpp | 4 |
1 files changed, 0 insertions, 4 deletions
diff --git a/engines/hdb/hdb.cpp b/engines/hdb/hdb.cpp index d3feec6440..b157445441 100644 --- a/engines/hdb/hdb.cpp +++ b/engines/hdb/hdb.cpp @@ -74,19 +74,15 @@ bool HDBGame::init() { if (!_fileMan->openMPC(getGameFile())) { error("FileMan::openMPC: Cannot find the hyperspace.mpc data file."); - return false; } if (!_ai->init()) { error("AI::init: Couldn't initialize AI"); - return false; } if (!_drawMan->init()) { error("DrawMan::init: Couldn't initialize DrawMan"); - return false; } if (!_lua->init()) { error("LuaScript::init: Couldn't load the GLOBAL_LUA code."); - return false; } _gameShutdown = false; |