diff options
-rw-r--r-- | engines/hdb/hdb.cpp | 9 |
1 files changed, 4 insertions, 5 deletions
diff --git a/engines/hdb/hdb.cpp b/engines/hdb/hdb.cpp index 0f85aa1fbc..2bb6b38b84 100644 --- a/engines/hdb/hdb.cpp +++ b/engines/hdb/hdb.cpp @@ -134,15 +134,14 @@ Common::Error HDBGame::run() { Tile *tile = new Tile; Graphics::Surface surf2 = tile->load(tileStream); - Common::SeekableReadStream *luaStream = fileMan->findFirstData("CINE_INTRO_DEMO_LUA", TYPE_BINARY); - int32 luaLength = fileMan->getLength("CINE_INTRO_DEMO_LUA", TYPE_BINARY); + Common::SeekableReadStream *luaStream = fileMan->findFirstData("MAP00_DEMO_LUA", TYPE_BINARY); + int32 luaLength = fileMan->getLength("MAP00_DEMO_LUA", TYPE_BINARY); if (luaStream == NULL) { - debug("The CINE_INTRO_DEMO_LUA MPC entry can't be found."); + debug("The MAP00_DEMO_LUA MPC entry can't be found."); return Common::kReadingFailed; } - lua->initScript(luaStream, "CINE_INTRO_DEMO_LUA", luaLength); - //lua->executeMPC(luaStream, "CINE_INTRO_DEMO_LUA", luaLength); + lua->initScript(luaStream, luaLength); while (!shouldQuit()) { |