diff options
author | Johannes Schickel | 2006-08-29 15:58:57 +0000 |
---|---|---|
committer | Johannes Schickel | 2006-08-29 15:58:57 +0000 |
commit | 1ba14890c65492d1d09fd272a37f1c7424023315 (patch) | |
tree | ad9289fdcf37ebb4a596a3cfef79b23715ce96bf /engines | |
parent | 733055cdd92b07ec4f43b0fd30e5f46da02db741 (diff) | |
download | scummvm-rg350-1ba14890c65492d1d09fd272a37f1c7424023315.tar.gz scummvm-rg350-1ba14890c65492d1d09fd272a37f1c7424023315.tar.bz2 scummvm-rg350-1ba14890c65492d1d09fd272a37f1c7424023315.zip |
Init unitialised var.
svn-id: r23805
Diffstat (limited to 'engines')
-rw-r--r-- | engines/kyra/resource.cpp | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/engines/kyra/resource.cpp b/engines/kyra/resource.cpp index 80f2289c70..30301f2cca 100644 --- a/engines/kyra/resource.cpp +++ b/engines/kyra/resource.cpp @@ -317,6 +317,7 @@ PAKFile::PAKFile(const char *file, const char *physfile, bool isAmiga) : Resourc _filename = file; _physfile = physfile; + _physOffset = 0; } PAKFile::PAKFile(const char *file, const char *physfile, const uint32 off, const uint8 *buffer, uint32 filesize, bool isAmiga) : ResourceFile() { |