[Scummvm-git-logs] scummvm master -> c3c9f43a04703060b72c6de0afcf423aee30330b
lephilousophe
noreply at scummvm.org
Sun Sep 17 17:54:58 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:
c3c9f43a04 AGS: Fix build when SIZE_MAX is 64-bit sized
Commit: c3c9f43a04703060b72c6de0afcf423aee30330b
https://github.com/scummvm/scummvm/commit/c3c9f43a04703060b72c6de0afcf423aee30330b
Author: Le Philousophe (lephilousophe at users.noreply.github.com)
Date: 2023-09-17T19:54:19+02:00
Commit Message:
AGS: Fix build when SIZE_MAX is 64-bit sized
Closes PR #5316
Changed paths:
engines/ags/shared/debugging/out.h
diff --git a/engines/ags/shared/debugging/out.h b/engines/ags/shared/debugging/out.h
index 86589fb51ab..5d5990418c2 100644
--- a/engines/ags/shared/debugging/out.h
+++ b/engines/ags/shared/debugging/out.h
@@ -113,7 +113,7 @@ enum MessageType {
// This enumeration is a list of common hard-coded groups, but more could
// be added via debugging configuration interface (see 'debug/debug.h').
enum CommonDebugGroup : uint32 {
- kDbgGroup_None = SIZE_MAX,
+ kDbgGroup_None = UINT32_MAX,
// Main debug group is for reporting general engine status and issues
kDbgGroup_Main = 0,
// Game group is for logging game logic state and issues
More information about the Scummvm-git-logs
mailing list