aboutsummaryrefslogtreecommitdiff
path: root/engines
diff options
context:
space:
mode:
authorStrangerke2015-01-26 23:14:42 +0100
committerStrangerke2015-01-26 23:14:42 +0100
commite8c9a828da890fb6803629e66f18f9096ca03e8e (patch)
treeec81fbcffa31646d2b09925608fac1f080532160 /engines
parent7ebd6c974cb0aed319b2f7c6a38f909a920b4e6c (diff)
downloadscummvm-rg350-e8c9a828da890fb6803629e66f18f9096ca03e8e.tar.gz
scummvm-rg350-e8c9a828da890fb6803629e66f18f9096ca03e8e.tar.bz2
scummvm-rg350-e8c9a828da890fb6803629e66f18f9096ca03e8e.zip
TSAGE: Fix 3 uninitialized variables
Diffstat (limited to 'engines')
-rw-r--r--engines/tsage/core.cpp3
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) {