Skip to content

Commit

Permalink
WAGE: Fix menu height
Browse files Browse the repository at this point in the history
  • Loading branch information
sev- committed Jan 4, 2016
1 parent 79dfc2b commit e2fa8c1
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions engines/wage/gui.cpp
Expand Up @@ -60,9 +60,9 @@
namespace Wage {

enum {
kMenuHeight = 19,
kMenuHeight = 20,
kMenuPadding = 6,
kMenuItemHeight = 19,
kMenuItemHeight = 20,
kBorderWidth = 17,
kDesktopArc = 7,
kComponentsPadding = 10,
Expand Down Expand Up @@ -603,7 +603,7 @@ void Gui::renderMenu() {
Design::drawFilledRect(&_screen, r, kColorBlack, p, 1);

const Graphics::Font *font = getMenuFont();
int y = _builtInFonts ? 3 : 1;
int y = _builtInFonts ? 3 : 2;
int x = 18;

for (int i = 0; menuItems[i]; i++) {
Expand Down

0 comments on commit e2fa8c1

Please sign in to comment.