From 9d1dc48a6e39b69cadf332cfd7fbe832a6c2da14 Mon Sep 17 00:00:00 2001 From: Martin Kiewitz Date: Sun, 24 Jan 2010 21:24:07 +0000 Subject: [PATCH] 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 --- engines/sci/graphics/menu.cpp | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) diff --git a/engines/sci/graphics/menu.cpp b/engines/sci/graphics/menu.cpp index fd92e0cd6df..4202f2b3fbd 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();