diff options
author | Sven Hesse | 2009-07-05 19:56:23 +0000 |
---|---|---|
committer | Sven Hesse | 2009-07-05 19:56:23 +0000 |
commit | a7ab6c5e92ccf774930846144cc5a272d7ce1542 (patch) | |
tree | 34d84997828b2444284cec89f68e05981ae0e53a | |
parent | dbdce9616c7c1a38d424dd2d7f1566d28f7a1147 (diff) | |
download | scummvm-rg350-a7ab6c5e92ccf774930846144cc5a272d7ce1542.tar.gz scummvm-rg350-a7ab6c5e92ccf774930846144cc5a272d7ce1542.tar.bz2 scummvm-rg350-a7ab6c5e92ccf774930846144cc5a272d7ce1542.zip |
Correcting an input related mistake
svn-id: r42143
-rw-r--r-- | engines/gob/hotspots.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/engines/gob/hotspots.cpp b/engines/gob/hotspots.cpp index 994a3e8efb..9847ae2ae1 100644 --- a/engines/gob/hotspots.cpp +++ b/engines/gob/hotspots.cpp @@ -1027,7 +1027,7 @@ uint16 Hotspots::handleInput(int16 time, uint16 maxPos, uint16 &curPos, if (!spot.isIn(_vm->_global->_inter_mouseX, _vm->_global->_inter_mouseY)) continue; - if ((spot.id & 0xF000)) + if (spot.getCursor() != 0) continue; if (spot.getType() < kTypeInput1NoLeave) |