aboutsummaryrefslogtreecommitdiff
path: root/scumm
diff options
context:
space:
mode:
authorTorbjörn Andersson2004-10-07 15:42:39 +0000
committerTorbjörn Andersson2004-10-07 15:42:39 +0000
commit7564fc2323d92e282ea3c0e027b9d10de71babbb (patch)
treec057467e37fc259ed5dbaa8ea78b78afb1ce972f /scumm
parent9383a074cdc8082705fca3cdd6894cc36bcba4df (diff)
downloadscummvm-rg350-7564fc2323d92e282ea3c0e027b9d10de71babbb.tar.gz
scummvm-rg350-7564fc2323d92e282ea3c0e027b9d10de71babbb.tar.bz2
scummvm-rg350-7564fc2323d92e282ea3c0e027b9d10de71babbb.zip
I don't know if it matters, but I'll feel safer if we initialise maskPtr...
svn-id: r15446
Diffstat (limited to 'scumm')
-rw-r--r--scumm/object.cpp2
1 files changed, 1 insertions, 1 deletions
diff --git a/scumm/object.cpp b/scumm/object.cpp
index 4992140914..273c6d261f 100644
--- a/scumm/object.cpp
+++ b/scumm/object.cpp
@@ -1516,7 +1516,7 @@ void ScummEngine::drawBlastObject(BlastObject *eo) {
bdd.y = eo->rect.top;
bdd.scale_x = (byte)eo->scaleX;
bdd.scale_y = (byte)eo->scaleY;
-
+ bdd.maskPtr = NULL;
if ((bdd.scale_x != 255) || (bdd.scale_y != 255)) {
byte bomp_scaling_x[64], bomp_scaling_y[64];