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

dreammaster noreply at scummvm.org
Tue Dec 26 20:18:58 UTC 2023


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

Summary:
91f12bd413 M4: Fix debug lines appearance in console
a3eea519ab M4: Fix English credits


Commit: 91f12bd413d5665bb1492c1a54ad56b04ddd4661
    https://github.com/scummvm/scummvm/commit/91f12bd413d5665bb1492c1a54ad56b04ddd4661
Author: eientei (einstein95 at users.noreply.github.com)
Date: 2023-12-26T10:18:54-10:00

Commit Message:
M4: Fix debug lines appearance in console

Changed paths:
    engines/m4/core/term.cpp


diff --git a/engines/m4/core/term.cpp b/engines/m4/core/term.cpp
index 8be8075753c..9694526a30a 100644
--- a/engines/m4/core/term.cpp
+++ b/engines/m4/core/term.cpp
@@ -66,7 +66,7 @@ void Term::message(const char *fmt, ...) {
 void Term::vmessage(const char *fmt, va_list va) {
 	if (_mode != MEMORY_MODE) {
 		Common::String msg = Common::String::vformat(fmt, va);
-		debugN(1, "%s", msg.c_str());
+		debug(1, "%s", msg.c_str());
 
 		if (_file) {
 			_file->writeString(msg);


Commit: a3eea519ab23e7fda49d643ba7d1562631d7c358
    https://github.com/scummvm/scummvm/commit/a3eea519ab23e7fda49d643ba7d1562631d7c358
Author: eientei (einstein95 at users.noreply.github.com)
Date: 2023-12-26T10:18:54-10:00

Commit Message:
M4: Fix English credits

Changed paths:
    engines/m4/burger/rooms/section9/room904.cpp


diff --git a/engines/m4/burger/rooms/section9/room904.cpp b/engines/m4/burger/rooms/section9/room904.cpp
index d84d1a51958..f13e0d80649 100644
--- a/engines/m4/burger/rooms/section9/room904.cpp
+++ b/engines/m4/burger/rooms/section9/room904.cpp
@@ -162,7 +162,7 @@ static const char *const CREDITS_ENG[] = {
 	"Conversations:  Robert Aitken",
 	nullptr,
 	"Production",
-	"Procucer:  Fran\xe7""ois Robillard,",
+	"Producer:  Fran\xe7""ois Robillard",
 	" ",
 	"Assistant Producer:  Danielle Cooper",
 	nullptr,
@@ -216,7 +216,8 @@ static const char *const CREDITS_ENG[] = {
 	"and Offspring who often made do without",
 	"their loved ones so that this product could",
 	"be made.",
-	" "
+	nullptr,
+	" ",
 	" ",
 	nullptr,
 	"Back To Main Menu",




More information about the Scummvm-git-logs mailing list