diff options
author | Sven Hesse | 2010-09-30 13:04:14 +0000 |
---|---|---|
committer | Sven Hesse | 2010-09-30 13:04:14 +0000 |
commit | 1d17a4157f068a988fd30e821c62cd2148e1a5f8 (patch) | |
tree | 6271287fb7698ecc46ef9033abab0e390b4a1510 /engines/gob | |
parent | 89f946ba3edde6cf1fa3b9d0eddd56aecfaee394 (diff) | |
download | scummvm-rg350-1d17a4157f068a988fd30e821c62cd2148e1a5f8.tar.gz scummvm-rg350-1d17a4157f068a988fd30e821c62cd2148e1a5f8.tar.bz2 scummvm-rg350-1d17a4157f068a988fd30e821c62cd2148e1a5f8.zip |
GOB: Remove extra \n in debug warning()s
svn-id: r52951
Diffstat (limited to 'engines/gob')
-rw-r--r-- | engines/gob/hotspots.cpp | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/engines/gob/hotspots.cpp b/engines/gob/hotspots.cpp index 881481a341..9525d420c6 100644 --- a/engines/gob/hotspots.cpp +++ b/engines/gob/hotspots.cpp @@ -1295,7 +1295,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\n",type, windowNum); + warning("evaluateNew - type %d, win %d",type, windowNum); // Evaluate parameters for the new hotspot switch (type) { @@ -1392,7 +1392,7 @@ void Hotspots::evaluateNew(uint16 i, uint16 *ids, InputDesc *inputs, flags = _vm->_game->_script->readInt16(); if (flags > 3) - warning("evaluateNew: Warning, use of type 2 or 20. flags = %d, should be %d\n", flags, flags&3); + warning("evaluateNew: Warning, use of type 2 or 20. flags = %d, should be %d", flags, flags&3); funcEnter = 0; |