diff options
author | Sven Hesse | 2011-01-20 12:31:13 +0000 |
---|---|---|
committer | Sven Hesse | 2011-01-20 12:31:13 +0000 |
commit | f015e175dff6592744a6a937ae424f6d01ab0db2 (patch) | |
tree | 1894738a09fe56028312421aab73410ab8bcf241 | |
parent | 3976342ec0120fb2b9817dc06cbf05e48ab521c3 (diff) | |
download | scummvm-rg350-f015e175dff6592744a6a937ae424f6d01ab0db2.tar.gz scummvm-rg350-f015e175dff6592744a6a937ae424f6d01ab0db2.tar.bz2 scummvm-rg350-f015e175dff6592744a6a937ae424f6d01ab0db2.zip |
GOB: Change a warning() into a debugC()
Because it gets on my nerves :P
svn-id: r55350
-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 94c3c6fb24..301d594eb9 100644 --- a/engines/gob/hotspots.cpp +++ b/engines/gob/hotspots.cpp @@ -1296,7 +1296,7 @@ void Hotspots::evaluateNew(uint16 i, uint16 *ids, InputDesc *inputs, uint32 funcEnter = 0, funcLeave = 0; if ((windowNum != 0) && (type != 0) && (type != 2)) - warning("evaluateNew - type %d, win %d",type, windowNum); + debugC(0, kDebugHotspots, "evaluateNew - type %d, win %d",type, windowNum); // Evaluate parameters for the new hotspot switch (type) { |