diff options
author | Strangerke | 2015-01-26 23:14:42 +0100 |
---|---|---|
committer | Strangerke | 2015-01-26 23:14:42 +0100 |
commit | e8c9a828da890fb6803629e66f18f9096ca03e8e (patch) | |
tree | ec81fbcffa31646d2b09925608fac1f080532160 | |
parent | 7ebd6c974cb0aed319b2f7c6a38f909a920b4e6c (diff) | |
download | scummvm-rg350-e8c9a828da890fb6803629e66f18f9096ca03e8e.tar.gz scummvm-rg350-e8c9a828da890fb6803629e66f18f9096ca03e8e.tar.bz2 scummvm-rg350-e8c9a828da890fb6803629e66f18f9096ca03e8e.zip |
TSAGE: Fix 3 uninitialized variables
-rw-r--r-- | engines/tsage/core.cpp | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/engines/tsage/core.cpp b/engines/tsage/core.cpp index f35aa583e2..3105a9008e 100644 --- a/engines/tsage/core.cpp +++ b/engines/tsage/core.cpp @@ -56,6 +56,9 @@ InvObject::InvObject(int sceneNumber, int rlbNum, int cursorNum, CursorType curs _bounds = s.getBounds(); DEALLOCATE(imgData); + _visage = 0; + _strip = 0; + _frame = 0; } InvObject::InvObject(int visage, int strip, int frame) { |