diff options
author | Sven Hesse | 2010-02-03 03:26:28 +0000 |
---|---|---|
committer | Sven Hesse | 2010-02-03 03:26:28 +0000 |
commit | 5115c94f351e476f51763f256ca98023c84be6bd (patch) | |
tree | be09375c71e87e9e103b5ea8fc4139dccfdeb0d7 /engines/gob | |
parent | d4949d03d4e1b5dffd4c80c05b0a0ef34b70eda1 (diff) | |
download | scummvm-rg350-5115c94f351e476f51763f256ca98023c84be6bd.tar.gz scummvm-rg350-5115c94f351e476f51763f256ca98023c84be6bd.tar.bz2 scummvm-rg350-5115c94f351e476f51763f256ca98023c84be6bd.zip |
Only show that annoying checkmouse warning for Fascination
svn-id: r47840
Diffstat (limited to 'engines/gob')
-rw-r--r-- | engines/gob/hotspots.cpp | 5 |
1 files changed, 3 insertions, 2 deletions
diff --git a/engines/gob/hotspots.cpp b/engines/gob/hotspots.cpp index 639a810ea8..7c29a72fdf 100644 --- a/engines/gob/hotspots.cpp +++ b/engines/gob/hotspots.cpp @@ -555,10 +555,11 @@ uint16 Hotspots::checkMouse(Type type, uint16 &id, uint16 &index) const { int16 dy = 0; int16 winId = -1; - if (_vm->getGameType() == kGameTypeFascination) + if (_vm->getGameType() == kGameTypeFascination) { winId = _vm->_draw->isOverWin(dx, dy); - warning("checkmouse %d - %d %d", winId, dx, dy); + warning("checkmouse %d - %d %d", winId, dx, dy); + } if (winId < 0) { winId = 0; |