aboutsummaryrefslogtreecommitdiff
path: root/engines/gob/mult_v2.cpp
diff options
context:
space:
mode:
authorSven Hesse2006-06-02 10:54:53 +0000
committerSven Hesse2006-06-02 10:54:53 +0000
commitf3f7b670d0572b3355df6ada4e512ae60b488e51 (patch)
tree2b46e565f36841c0e56dce30e1b4020486e65f39 /engines/gob/mult_v2.cpp
parent3d1cc0f7200f83fc654d8c623c684d8dff4079f4 (diff)
downloadscummvm-rg350-f3f7b670d0572b3355df6ada4e512ae60b488e51.tar.gz
scummvm-rg350-f3f7b670d0572b3355df6ada4e512ae60b488e51.tar.bz2
scummvm-rg350-f3f7b670d0572b3355df6ada4e512ae60b488e51.zip
- Fixed IMD transparency
- Fixed SegFault due to uninitialized _multData2 - Removed left-over debug comment svn-id: r22830
Diffstat (limited to 'engines/gob/mult_v2.cpp')
-rw-r--r--engines/gob/mult_v2.cpp1
1 files changed, 1 insertions, 0 deletions
diff --git a/engines/gob/mult_v2.cpp b/engines/gob/mult_v2.cpp
index e199df4a95..5b420ec668 100644
--- a/engines/gob/mult_v2.cpp
+++ b/engines/gob/mult_v2.cpp
@@ -41,6 +41,7 @@ namespace Gob {
Mult_v2::Mult_v2(GobEngine *vm) : Mult_v1(vm) {
int i;
+ _multData2 = 0;
for (i = 0; i < 8; i++) _multDatas[i] = 0;
}