diff options
author | Torbjörn Andersson | 2004-08-08 18:03:52 +0000 |
---|---|---|
committer | Torbjörn Andersson | 2004-08-08 18:03:52 +0000 |
commit | f8cc6c22416c0e9615abfdd98fc2e86852e897a9 (patch) | |
tree | 0610ca4f92def7358e4a964681fd2972041e8f11 | |
parent | 5564f36b0e762164d1e6fda5e804723266f8e9ae (diff) | |
download | scummvm-rg350-f8cc6c22416c0e9615abfdd98fc2e86852e897a9.tar.gz scummvm-rg350-f8cc6c22416c0e9615abfdd98fc2e86852e897a9.tar.bz2 scummvm-rg350-f8cc6c22416c0e9615abfdd98fc2e86852e897a9.zip |
Initialise variables to stop the ITE intro from crashing.
svn-id: r14520
-rw-r--r-- | saga/objectmap.cpp | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/saga/objectmap.cpp b/saga/objectmap.cpp index 92b8e16d8f..ac55d5599c 100644 --- a/saga/objectmap.cpp +++ b/saga/objectmap.cpp @@ -49,6 +49,8 @@ ObjectMap::ObjectMap(Gfx *gfx) { debug(0, "ObjectMap Module: Initializing..."); _gfx = gfx; _initialized = 1; + _objects_loaded = 0; + _names_loaded = 0; } // Shuts down the object map module, destroys module allocation context |