diff options
-rw-r--r-- | engines/wage/gui.cpp | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/engines/wage/gui.cpp b/engines/wage/gui.cpp index 420a584e53..377b89b65e 100644 --- a/engines/wage/gui.cpp +++ b/engines/wage/gui.cpp @@ -57,8 +57,9 @@ Gui::~Gui() { } void Gui::drawBox(Graphics::Surface *g, int x, int y, int w, int h) { - Common::Rect r(x, y, x + w, y + h); + Common::Rect r(x, y, x + w + 1, y + h + 1); + g->fillRect(r, kColorWhite); g->frameRect(r, kColorBlack); } |