diff options
author | Torbjörn Andersson | 2004-10-07 15:42:39 +0000 |
---|---|---|
committer | Torbjörn Andersson | 2004-10-07 15:42:39 +0000 |
commit | 7564fc2323d92e282ea3c0e027b9d10de71babbb (patch) | |
tree | c057467e37fc259ed5dbaa8ea78b78afb1ce972f | |
parent | 9383a074cdc8082705fca3cdd6894cc36bcba4df (diff) | |
download | scummvm-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
-rw-r--r-- | scumm/object.cpp | 2 |
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]; |