diff options
author | Eugene Sandulenko | 2013-11-09 13:21:25 +0200 |
---|---|---|
committer | Eugene Sandulenko | 2013-11-09 13:21:25 +0200 |
commit | ee9b4c979a3c06776f6f1b9996ce9406e1f67044 (patch) | |
tree | 3652fd33671535b653a8eb19ea1b6c8636b73629 | |
parent | 234f3f315053005961a91018f8b8bcf6ebb1865f (diff) | |
download | scummvm-rg350-ee9b4c979a3c06776f6f1b9996ce9406e1f67044.tar.gz scummvm-rg350-ee9b4c979a3c06776f6f1b9996ce9406e1f67044.tar.bz2 scummvm-rg350-ee9b4c979a3c06776f6f1b9996ce9406e1f67044.zip |
PARALLACTION: Initialize variable. CID 1002725
-rw-r--r-- | engines/parallaction/graphics.h | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/engines/parallaction/graphics.h b/engines/parallaction/graphics.h index 550f9d1dd9..401e753775 100644 --- a/engines/parallaction/graphics.h +++ b/engines/parallaction/graphics.h @@ -138,7 +138,7 @@ public: } Cnv(uint16 numFrames, uint16 width, uint16 height, byte* data, bool freeData = false) - : _count(numFrames), _width(width), _height(height), _data(data), _freeData(freeData) { + : _count(numFrames), _width(width), _height(height), _data(data), _freeData(freeData), field_8(0) { } |