From 1571474af726ac7df60fb5e6bb2063d5502d91cf Mon Sep 17 00:00:00 2001 From: jonatan1024 Date: Fri, 25 Apr 2025 17:27:10 +0200 Subject: [PATCH] message manager fix (#1089) --- rehlds/rehlds/rehlds_messagemngr_impl.cpp | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/rehlds/rehlds/rehlds_messagemngr_impl.cpp b/rehlds/rehlds/rehlds_messagemngr_impl.cpp index 6179504..c0ca01d 100644 --- a/rehlds/rehlds/rehlds_messagemngr_impl.cpp +++ b/rehlds/rehlds/rehlds_messagemngr_impl.cpp @@ -267,9 +267,9 @@ private: }; #pragma pack(pop) - static const size_t MAX_PARAMS = 16; // The maximum number of parameters allowed in the message + static const size_t MAX_PARAMS = 32; // The maximum number of parameters allowed in the message Param_t m_params[MAX_PARAMS]{}; // The array of parameters in the message - size_t m_paramCount : 4; // The number of parameters in the message + size_t m_paramCount : 5; // The number of parameters in the message void resetParam(size_t index);