From 03e3f80bffcb24c2524b62b6602aad8698315b42 Mon Sep 17 00:00:00 2001 From: Eugene Sandulenko Date: Fri, 1 Jan 2016 02:16:00 +0100 Subject: WAGE: Mac has roundrect on desktop. Render it --- engines/wage/gui.cpp | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) (limited to 'engines/wage/gui.cpp') diff --git a/engines/wage/gui.cpp b/engines/wage/gui.cpp index 92758c0a9c..713a1c2b5b 100644 --- a/engines/wage/gui.cpp +++ b/engines/wage/gui.cpp @@ -120,7 +120,6 @@ Gui::Gui() { Patterns p; p.push_back(checkers); - Common::Rect r(0, 0, _screen.w, _screen.h); _scrollPos = 0; _builtInFonts = false; @@ -132,7 +131,8 @@ Gui::Gui() { _cursorIsArrow = true; CursorMan.showMouse(true); - Design::drawFilledRect(&_screen, r, kColorBlack, p, 1); + Common::Rect r(0, 0, _screen.w - 1, _screen.h - 1); + Design::drawFilledRoundRect(&_screen, r, 7, kColorBlack, p, 1); loadFonts(); } -- cgit v1.2.3