diff options
author | Filippos Karapetis | 2010-07-28 07:51:49 +0000 |
---|---|---|
committer | Filippos Karapetis | 2010-07-28 07:51:49 +0000 |
commit | 3c8a606e7191391857640c507c85c8a57154d5a7 (patch) | |
tree | 62b577e8acd00bbe60a44dad2aafc62ce3fa893e /engines/sci/graphics | |
parent | 764b8419900135cadb2f6d228811113c1ce6429c (diff) | |
download | scummvm-rg350-3c8a606e7191391857640c507c85c8a57154d5a7.tar.gz scummvm-rg350-3c8a606e7191391857640c507c85c8a57154d5a7.tar.bz2 scummvm-rg350-3c8a606e7191391857640c507c85c8a57154d5a7.zip |
SCI: Added bug report numbers for all the recently fixed bugs
svn-id: r51407
Diffstat (limited to 'engines/sci/graphics')
-rw-r--r-- | engines/sci/graphics/menu.cpp | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/engines/sci/graphics/menu.cpp b/engines/sci/graphics/menu.cpp index b280f78b3c..92c0e92f48 100644 --- a/engines/sci/graphics/menu.cpp +++ b/engines/sci/graphics/menu.cpp @@ -273,6 +273,7 @@ void GfxMenu::kernelSetAttribute(uint16 menuId, uint16 itemId, uint16 attributeI GuiMenuItemEntry *itemEntry = findItem(menuId, itemId); if (!itemEntry) { // Check if the game actually has a menu. PQ2 demo calls this, for example, but has no menus. + // (bug report #3034507) if (_itemList.size() == 0) return; else |