[Scummvm-git-logs] scummvm master -> 32a4ec8d4dc976c88b3a1c7aa156310878c25f0c

rvanlaar roland at rolandvanlaar.nl
Sun Jul 26 17:39:41 UTC 2020


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:
32a4ec8d4d DIRECTOR: LINGO: Set correct debuglevel


Commit: 32a4ec8d4dc976c88b3a1c7aa156310878c25f0c
    https://github.com/scummvm/scummvm/commit/32a4ec8d4dc976c88b3a1c7aa156310878c25f0c
Author: Roland van Laar (roland at rolandvanlaar.nl)
Date: 2020-07-26T19:38:05+02:00

Commit Message:
DIRECTOR: LINGO: Set correct debuglevel

The called function only prints on debuglevel 5. Set the debuglevel
to that.

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


diff --git a/engines/director/lingo/lingo-code.cpp b/engines/director/lingo/lingo-code.cpp
index 0aabbde53c..4ae32771e1 100644
--- a/engines/director/lingo/lingo-code.cpp
+++ b/engines/director/lingo/lingo-code.cpp
@@ -1402,7 +1402,7 @@ void LC::c_callfunc() {
 }
 
 void LC::call(const Common::String &name, int nargs, bool allowRetVal) {
-	if (debugChannelSet(3, kDebugLingoExec))
+	if (debugChannelSet(5, kDebugLingoExec))
 		g_lingo->printSTUBWithArglist(name.c_str(), nargs, "call:");
 
 	Symbol funcSym;




More information about the Scummvm-git-logs mailing list