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

OMGPizzaGuy noreply at scummvm.org
Sun Jan 1 19:04:31 UTC 2023


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:
6ec0d611c6 ULTIMA8: Fix quick move key debug console output when quick move not allowed


Commit: 6ec0d611c608b9ba29f3fad8a84632723e314dff
    https://github.com/scummvm/scummvm/commit/6ec0d611c608b9ba29f3fad8a84632723e314dff
Author: Matthew Jimenez (matthew.jimenez at outlook.com)
Date: 2023-01-01T13:04:06-06:00

Commit Message:
ULTIMA8: Fix quick move key debug console output when quick move not allowed

Changed paths:
    engines/ultima/ultima8/misc/debugger.cpp


diff --git a/engines/ultima/ultima8/misc/debugger.cpp b/engines/ultima/ultima8/misc/debugger.cpp
index 3b08825e285..40f49d4ab31 100644
--- a/engines/ultima/ultima8/misc/debugger.cpp
+++ b/engines/ultima/ultima8/misc/debugger.cpp
@@ -1483,11 +1483,11 @@ bool Debugger::cmdObjectInfo(int argc, const char **argv) {
 static bool _quickMoveKey(uint32 flag, const char *debugname) {
 	Ultima8Engine *engine = Ultima8Engine::get_instance();
 	if (engine->isAvatarInStasis()) {
-		debug("Can't %s: avatarInStasis\n", debugname);
+		g_debugger->debugPrintf("Can't %s: avatarInStasis\n", debugname);
 		return true;
 	}
 	if (!engine->areCheatsEnabled()) {
-		debug("Can't %s: Cheats aren't enabled\n", debugname);
+		g_debugger->debugPrintf("Can't %s: Cheats aren't enabled\n", debugname);
 		return true;
 	}
 




More information about the Scummvm-git-logs mailing list