aboutsummaryrefslogtreecommitdiff
path: root/graphics
diff options
context:
space:
mode:
authorEugene Sandulenko2019-09-28 01:48:11 +0200
committerEugene Sandulenko2019-09-28 01:48:11 +0200
commit772e60526f397349cb8f7be48a278d90477f61a7 (patch)
tree67065daed2a0c26dd1a702ba96deb5ed149cf7fd /graphics
parent6c36f4b5503e1036dbcc4a8183624f9621c0143f (diff)
downloadscummvm-rg350-772e60526f397349cb8f7be48a278d90477f61a7.tar.gz
scummvm-rg350-772e60526f397349cb8f7be48a278d90477f61a7.tar.bz2
scummvm-rg350-772e60526f397349cb8f7be48a278d90477f61a7.zip
GRAPHICS: Initialize class variable
Diffstat (limited to 'graphics')
-rw-r--r--graphics/nine_patch.h2
1 files changed, 1 insertions, 1 deletions
diff --git a/graphics/nine_patch.h b/graphics/nine_patch.h
index faf44e553f..6674099116 100644
--- a/graphics/nine_patch.h
+++ b/graphics/nine_patch.h
@@ -68,7 +68,7 @@ public:
Common::Array<NinePatchMark *> _m;
int _fix;
- NinePatchSide() : _fix(0) {}
+ NinePatchSide() : _fix(0) { _m.clear(); }
~NinePatchSide();
bool init(Graphics::TransparentSurface *bmp, bool vertical);