diff options
-rw-r--r-- | engines/mohawk/console.cpp | 5 |
1 files changed, 3 insertions, 2 deletions
diff --git a/engines/mohawk/console.cpp b/engines/mohawk/console.cpp index 478565b278..446d957109 100644 --- a/engines/mohawk/console.cpp +++ b/engines/mohawk/console.cpp @@ -467,10 +467,11 @@ bool RivenConsole::Cmd_Hotspots(int argc, const char **argv) { DebugPrintf("Hotspot %d, index %d, BLST ID %d (", i, _vm->_hotspots[i].index, _vm->_hotspots[i].blstID); if (_vm->_hotspots[i].enabled) - DebugPrintf("enabled)\n"); + DebugPrintf("enabled"); else - DebugPrintf("disabled)\n"); + DebugPrintf("disabled"); + DebugPrintf(") - (%d, %d, %d, %d)\n", _vm->_hotspots[i].rect.left, _vm->_hotspots[i].rect.top, _vm->_hotspots[i].rect.right, _vm->_hotspots[i].rect.bottom); DebugPrintf(" Name = %s\n", _vm->getHotspotName(i).c_str()); } |