diff options
-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; |