diff options
-rw-r--r-- | engines/agi/console.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/engines/agi/console.cpp b/engines/agi/console.cpp index 83137a2a10..1c761f1c6f 100644 --- a/engines/agi/console.cpp +++ b/engines/agi/console.cpp @@ -148,7 +148,7 @@ bool Console::Cmd_RunOpcode(int argc, const char **argv) { p[3] = argv[5] ? (char)strtoul(argv[5], NULL, 0) : 0; p[4] = argv[6] ? (char)strtoul(argv[6], NULL, 0) : 0; - debugC(5, kDebugLevelMain, "Opcode: %s %d %d %d", logic_names_cmd[i].name, argv[1], argv[2], argv[3]); + debugC(5, kDebugLevelMain, "Opcode: %s %s %s %s", logic_names_cmd[i].name, argv[1], argv[2], argv[3]); execute_agi_command(i, p); |