[Scummvm-git-logs] scummvm master -> 6b0b516d56c4450a4cb90b09e38ee02183362d62

AndywinXp noreply at scummvm.org
Wed Dec 29 15:04:36 UTC 2021


This automated email contains information about 1 new commit which have been
pushed to the 'scummvm' repo located at https://github.com/scummvm/scummvm .

Summary:
6b0b516d56 SCUMM: Fix debug print in DiMUSE debugger


Commit: 6b0b516d56c4450a4cb90b09e38ee02183362d62
    https://github.com/scummvm/scummvm/commit/6b0b516d56c4450a4cb90b09e38ee02183362d62
Author: Andrea Boscarino (andywinxp at gmail.com)
Date: 2021-12-29T16:04:34+01:00

Commit Message:
SCUMM: Fix debug print in DiMUSE debugger

Changed paths:
    engines/scumm/debugger.cpp


diff --git a/engines/scumm/debugger.cpp b/engines/scumm/debugger.cpp
index 8671478fc3f..fe47056d8e0 100644
--- a/engines/scumm/debugger.cpp
+++ b/engines/scumm/debugger.cpp
@@ -259,7 +259,7 @@ bool ScummDebugger::Cmd_DiMuse(int argc, const char **argv) {
 			return true;
 		} else if (!strcmp(argv[1], "hook")) {
 			if (argc > 3 && atoi(argv[3]) != 0) {
-				debugPrintf("Attempting to play set hookId %d for sound %d...\n", atoi(argv[2]), atoi(argv[3]));
+				debugPrintf("Attempting to set hookId %d for sound %d...\n", atoi(argv[2]), atoi(argv[3]));
 				_vm->_imuseDigital->diMUSESetHook(atoi(argv[3]), atoi(argv[2]));
 			} else {
 				debugPrintf("Specify a hookId and a soundId;\nuse \"list\" to get a list of currently playing sounds.\n");




More information about the Scummvm-git-logs mailing list