diff options
author | Filippos Karapetis | 2016-02-24 00:08:21 +0200 |
---|---|---|
committer | Filippos Karapetis | 2016-02-24 00:10:48 +0200 |
commit | a229edaea82c69e6d476290edb3b31e6279bf7a3 (patch) | |
tree | a7d53f6b78e4c12ae6ac5e55e12eba5d7aeb5366 | |
parent | 82fca783b38a01d402043082e9862623f61904eb (diff) | |
download | scummvm-rg350-a229edaea82c69e6d476290edb3b31e6279bf7a3.tar.gz scummvm-rg350-a229edaea82c69e6d476290edb3b31e6279bf7a3.tar.bz2 scummvm-rg350-a229edaea82c69e6d476290edb3b31e6279bf7a3.zip |
WAGE: Silence false positive MSVC warnings
-rw-r--r-- | engines/wage/gui.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/engines/wage/gui.cpp b/engines/wage/gui.cpp index 9c80435b70..26af5f6d3d 100644 --- a/engines/wage/gui.cpp +++ b/engines/wage/gui.cpp @@ -311,7 +311,7 @@ const int arrowPixels[ARROW_H][ARROW_W] = { {1,1,1,1,1,1,1,1,1,1,1,1}}; void Gui::paintBorder(Graphics::Surface *g, Common::Rect &r, WindowType windowType) { - bool active, scrollable, closeable, closeBoxPressed, drawTitle; + bool active = false, scrollable = false, closeable = false, closeBoxPressed = false, drawTitle = false; const int size = kBorderWidth; int x = r.left - size; int y = r.top - size; |