diff options
author | Sven Hesse | 2011-08-28 21:40:45 +0200 |
---|---|---|
committer | Sven Hesse | 2011-08-28 21:54:43 +0200 |
commit | fcadd5a56d2ed1b51df9106a7703aa6a50dada8d (patch) | |
tree | bf9d8dec0ff11f2c68c80bfdc745caea6a5031e9 /engines/gob | |
parent | 8c69d64678361420fc1e51632cd79b29fb3128f3 (diff) | |
download | scummvm-rg350-fcadd5a56d2ed1b51df9106a7703aa6a50dada8d.tar.gz scummvm-rg350-fcadd5a56d2ed1b51df9106a7703aa6a50dada8d.tar.bz2 scummvm-rg350-fcadd5a56d2ed1b51df9106a7703aa6a50dada8d.zip |
GOB: Fix Geisha's hotspot checks
Diffstat (limited to 'engines/gob')
-rw-r--r-- | engines/gob/hotspots.cpp | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/engines/gob/hotspots.cpp b/engines/gob/hotspots.cpp index 1a2f4b2769..96b1efbcf1 100644 --- a/engines/gob/hotspots.cpp +++ b/engines/gob/hotspots.cpp @@ -775,7 +775,8 @@ uint16 Hotspots::check(uint8 handleMouse, int16 delay, uint16 &id, uint16 &index _vm->_draw->blitCursor(); - if ((key != _currentKey) && (_vm->getGameType() != kGameTypeFascination)) + if ((key != _currentKey) && (_vm->getGameType() != kGameTypeFascination) && + (_vm->getGameType() != kGameTypeGeisha)) // If the hotspot changed, leave the old one // Code not present in Fascination executables leave(_currentIndex); |