[Scummvm-git-logs] scummvm master -> 84e7e4b1f3590f7263b3dcf46f3a093f2b0b8f75
whoozle
noreply at scummvm.org
Thu Jul 16 18:29:02 UTC 2026
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:
84e7e4b1f3 PHOENIXVR: Fix global constructors warning
Commit: 84e7e4b1f3590f7263b3dcf46f3a093f2b0b8f75
https://github.com/scummvm/scummvm/commit/84e7e4b1f3590f7263b3dcf46f3a093f2b0b8f75
Author: Vladimir Menshakov (vladimir.menshakov at gmail.com)
Date: 2026-07-16T19:28:52+01:00
Commit Message:
PHOENIXVR: Fix global constructors warning
Changed paths:
engines/phoenixvr/commands.h
diff --git a/engines/phoenixvr/commands.h b/engines/phoenixvr/commands.h
index 0116f492c55..d3a33cb16f6 100644
--- a/engines/phoenixvr/commands.h
+++ b/engines/phoenixvr/commands.h
@@ -35,9 +35,9 @@ namespace {
constexpr int kMessengerInventorySlots = 12;
constexpr int kMessengerDisplayedInventorySlots = 8;
constexpr int kLouvreChestSize = 128;
-const Common::Rect kLouvreTextRect(62, 402, 354, 466);
-const uint16 kLouvreTextColor = 1987;
-const uint16 kLouvreWarningTextColor = 63687;
+constexpr Common::Rect kLouvreTextRect({62, 402}, 354, 466);
+constexpr uint16 kLouvreTextColor = 1987;
+constexpr uint16 kLouvreWarningTextColor = 63687;
constexpr uint32 kLouvreTextBlockMillis = 5000;
struct LouvrePluginState {
More information about the Scummvm-git-logs
mailing list