[Scummvm-git-logs] scummvm master -> 85012c43db5c775fcdb9073ef8135e169b3d6855

dwatteau noreply at scummvm.org
Thu Mar 9 12:20:44 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:
6fc06d11b2 WINTERMUTE: Fix MSVC C4245 type warning
85012c43db WINTERMUTE: Add missing newline to debugger output


Commit: 6fc06d11b202e32e7a2cef0f824ee521d2f30677
    https://github.com/scummvm/scummvm/commit/6fc06d11b202e32e7a2cef0f824ee521d2f30677
Author: Donovan Watteau (contrib at dwatteau.fr)
Date: 2023-03-09T13:15:50+01:00

Commit Message:
WINTERMUTE: Fix MSVC C4245 type warning

Changed paths:
    engines/wintermute/wintermute.h


diff --git a/engines/wintermute/wintermute.h b/engines/wintermute/wintermute.h
index bca8e67099f..a75cb99a878 100644
--- a/engines/wintermute/wintermute.h
+++ b/engines/wintermute/wintermute.h
@@ -36,7 +36,7 @@ class DebuggerController;
 
 const int INT_MAX_VALUE  = 0x7fffffff;
 const int INT_MIN_VALUE  = -INT_MAX_VALUE - 1;
-const int UINT_MAX_VALUE = 0xffffffff;
+const uint UINT_MAX_VALUE = 0xffffffff;
 
 // our engine debug channels
 enum {


Commit: 85012c43db5c775fcdb9073ef8135e169b3d6855
    https://github.com/scummvm/scummvm/commit/85012c43db5c775fcdb9073ef8135e169b3d6855
Author: Donovan Watteau (contrib at dwatteau.fr)
Date: 2023-03-09T13:17:50+01:00

Commit Message:
WINTERMUTE: Add missing newline to debugger output

Changed paths:
    engines/wintermute/debugger.cpp


diff --git a/engines/wintermute/debugger.cpp b/engines/wintermute/debugger.cpp
index 2f1ba8dd8e5..999d17b0941 100644
--- a/engines/wintermute/debugger.cpp
+++ b/engines/wintermute/debugger.cpp
@@ -99,7 +99,7 @@ void Console::printUsage(const Common::String &command) {
 	} else if (command.equals(SET_CMD)) {
 		debugPrintf("Usage: %s <name> = <value> to set <name> to <value>\n", command.c_str());
 	} else {
-		debugPrintf("No help about this command, sorry.");
+		debugPrintf("No help about this command, sorry.\n");
 	}
 }
 




More information about the Scummvm-git-logs mailing list