2
0
mirror of https://github.com/rehlds/rehlds.git synced 2025-04-30 00:39:33 +03:00

message manager fix (#1089)

This commit is contained in:
jonatan1024 2025-04-25 17:27:10 +02:00 committed by GitHub
parent 97dd83d626
commit 1571474af7
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194

View File

@ -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);