aboutsummaryrefslogtreecommitdiff
path: root/engines/illusions
diff options
context:
space:
mode:
authorD G Turner2019-09-15 22:40:17 +0100
committerD G Turner2019-09-15 22:40:17 +0100
commit2c21c1a25e6ee1414fe33d29bed59c280bef7739 (patch)
tree51f8de4f91d2385e498f8fec32183b11e6dabd4f /engines/illusions
parenta4aba129dc050c2eb180a190624ac8618cc1b665 (diff)
downloadscummvm-rg350-2c21c1a25e6ee1414fe33d29bed59c280bef7739.tar.gz
scummvm-rg350-2c21c1a25e6ee1414fe33d29bed59c280bef7739.tar.bz2
scummvm-rg350-2c21c1a25e6ee1414fe33d29bed59c280bef7739.zip
ILLUSIONS: Fix Further MSVC Warning
This was reported by Henke37 on IRC.
Diffstat (limited to 'engines/illusions')
-rw-r--r--engines/illusions/graphics.h2
1 files changed, 2 insertions, 0 deletions
diff --git a/engines/illusions/graphics.h b/engines/illusions/graphics.h
index a2643685bb..e3fbea844d 100644
--- a/engines/illusions/graphics.h
+++ b/engines/illusions/graphics.h
@@ -32,6 +32,8 @@ namespace Illusions {
struct WidthHeight {
int16 _width, _height;
void load(Common::SeekableReadStream &stream);
+
+ WidthHeight() : _width(0), _height(0) {}
};
struct SurfInfo {