diff options
Diffstat (limited to 'engines/lure/debugger.cpp')
-rw-r--r-- | engines/lure/debugger.cpp | 9 |
1 files changed, 3 insertions, 6 deletions
diff --git a/engines/lure/debugger.cpp b/engines/lure/debugger.cpp index 1cfe0804e4..9b1bb743e4 100644 --- a/engines/lure/debugger.cpp +++ b/engines/lure/debugger.cpp @@ -23,7 +23,6 @@ * */ - #include "common/config-manager.h" #include "common/endian.h" #include "lure/luredefs.h" @@ -323,7 +322,7 @@ bool Debugger::cmd_hotspot(int argc, const char **argv) { if (h != NULL) { DebugPrintf("Frame Number = %d of %d\n", h->frameNumber(), h->numFrames()); - DebugPrintf("Persistant = %s\n", h->persistant() ? "true" : "false"); + DebugPrintf("Persistent = %s\n", h->persistant() ? "true" : "false"); } } else if (strcmp(argv[2], "actions") == 0) { @@ -353,15 +352,13 @@ bool Debugger::cmd_hotspot(int argc, const char **argv) { } else { if (strcmp(argv[2], "schedule") == 0) { // List any current schedule for the character - hs->npcSchedule.list(buffer); - DebugPrintf("%s", buffer); + DebugPrintf("%s", hs->npcSchedule.getDebugInfo().c_str()); } if (!h) DebugPrintf("The specified hotspot is not currently active\n"); else if (strcmp(argv[2], "paths") == 0) { // List any paths for a charcter - h->pathFinder().list(buffer); - DebugPrintf("%s", buffer); + DebugPrintf("%s", h->pathFinder().getDebugInfo().c_str()); } else if (strcmp(argv[2], "pixels") == 0) { // List the pixel data for the hotspot |