diff options
author | Robert Špalek | 2010-06-28 04:16:00 +0000 |
---|---|---|
committer | Robert Špalek | 2010-06-28 04:16:00 +0000 |
commit | d4a0c8a1ad162aaa8d7f207161cbe61abc458d4c (patch) | |
tree | e68c56a46a77ab7775616e85c1f1cd9b4e17e3fc /engines/draci | |
parent | c7554c267e6eaf8457611c44476143a54bbb66c0 (diff) | |
download | scummvm-rg350-d4a0c8a1ad162aaa8d7f207161cbe61abc458d4c.tar.gz scummvm-rg350-d4a0c8a1ad162aaa8d7f207161cbe61abc458d4c.tar.bz2 scummvm-rg350-d4a0c8a1ad162aaa8d7f207161cbe61abc458d4c.zip |
bugfix for the item fast-switching commit
svn-id: r50408
Diffstat (limited to 'engines/draci')
-rw-r--r-- | engines/draci/game.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/engines/draci/game.cpp b/engines/draci/game.cpp index 4ae0b71280..c39b763987 100644 --- a/engines/draci/game.cpp +++ b/engines/draci/game.cpp @@ -907,7 +907,7 @@ void Game::inventorySwitch(int keycode) { } break; } - if (getRoomNum() != getMapRoom()) { + if (getLoopStatus() == kStatusOrdinary) { updateOrdinaryCursor(); } else { updateInventoryCursor(); |