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