[Scummvm-git-logs] scummvm master -> be63ba70e62008c632fa290faf28485c5275f5cd

sev- noreply at scummvm.org
Sat Oct 11 18:11:29 UTC 2025


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

Summary:
be63ba70e6 DIRECTOR: LINGO: Hid noisy warning


Commit: be63ba70e62008c632fa290faf28485c5275f5cd
    https://github.com/scummvm/scummvm/commit/be63ba70e62008c632fa290faf28485c5275f5cd
Author: Eugene Sandulenko (sev at scummvm.org)
Date: 2025-10-11T20:11:19+02:00

Commit Message:
DIRECTOR: LINGO: Hid noisy warning

Changed paths:
    engines/director/lingo/lingo.cpp


diff --git a/engines/director/lingo/lingo.cpp b/engines/director/lingo/lingo.cpp
index 73981ec6275..e4c4cf61422 100644
--- a/engines/director/lingo/lingo.cpp
+++ b/engines/director/lingo/lingo.cpp
@@ -676,7 +676,7 @@ bool Lingo::execute(int targetFrame) {
 		g_debugger->stepHook();
 
 		if (_state->script == nullptr) {
-			warning("Lingo::execute(): PANIC: No script to execute (1)");
+			debugC(1, kDebugLingoExec, "Lingo::execute(): PANIC: No script to execute (1)");
 			break;
 		}
 
@@ -695,7 +695,7 @@ bool Lingo::execute(int targetFrame) {
 		localCounter++;
 
 		if (_state->script == nullptr) {
-			warning("Lingo::execute(): PANIC: No script to execute (2)");
+			debugC(1, kDebugLingoExec, "Lingo::execute(): PANIC: No script to execute (2)");
 			break;
 		}
 




More information about the Scummvm-git-logs mailing list