Skip to content

Commit

Permalink
WAGE: Fixed menu highlight size
Browse files Browse the repository at this point in the history
  • Loading branch information
sev- committed Jan 11, 2016
1 parent 644f1ef commit a65fdcf
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions engines/wage/menu.cpp
Expand Up @@ -195,9 +195,9 @@ void Menu::render() {
font->drawString(&_gui->_screen, _items[i]->name, x, y, w, color);

if (_items[i]->bbox.bottom == 0) {
_items[i]->bbox.left = x;
_items[i]->bbox.left = x - 7;
_items[i]->bbox.top = y;
_items[i]->bbox.right = x + w;
_items[i]->bbox.right = x + w + 6;
_items[i]->bbox.bottom = y + font->getFontHeight();
}

Expand Down

0 comments on commit a65fdcf

Please sign in to comment.