diff options
author | Martin Kiewitz | 2010-01-24 21:24:07 +0000 |
---|---|---|
committer | Martin Kiewitz | 2010-01-24 21:24:07 +0000 |
commit | 9d1dc48a6e39b69cadf332cfd7fbe832a6c2da14 (patch) | |
tree | c77bec5b8137c85c102661240c7edc254ea43ab1 /engines/sci/graphics | |
parent | a1daf54425a6311f8c9837a95a63c7ba73604278 (diff) | |
download | scummvm-rg350-9d1dc48a6e39b69cadf332cfd7fbe832a6c2da14.tar.gz scummvm-rg350-9d1dc48a6e39b69cadf332cfd7fbe832a6c2da14.tar.bz2 scummvm-rg350-9d1dc48a6e39b69cadf332cfd7fbe832a6c2da14.zip |
SCI: removed oldMenuId check for BitsShow in menu (was done for keyboard interaction) - using mouse its possible to leave the menu which would now result in inverted menu topic not displayed - fixed
svn-id: r47526
Diffstat (limited to 'engines/sci/graphics')
-rw-r--r-- | engines/sci/graphics/menu.cpp | 3 |
1 files changed, 1 insertions, 2 deletions
diff --git a/engines/sci/graphics/menu.cpp b/engines/sci/graphics/menu.cpp index fd92e0cd6d..4202f2b3fb 100644 --- a/engines/sci/graphics/menu.cpp +++ b/engines/sci/graphics/menu.cpp @@ -505,8 +505,7 @@ void Menu::drawMenu(uint16 oldMenuId, uint16 newMenuId) { listIterator++; } - if (oldMenuId != 0) - _gfx->BitsShow(_gfx->_menuBarRect); + _gfx->BitsShow(_gfx->_menuBarRect); _menuRect.bottom = _menuRect.top + 2; listItemIterator = _itemList.begin(); |