Correct CUtlBuffer::m_Memory index type

This commit is contained in:
GAMMACASE 2025-08-19 16:05:44 +03:00
parent c80e0e5fee
commit 4499acb4f5

View File

@ -455,7 +455,7 @@ protected:
template <typename T> void PutTypeBin( T src );
template <typename T> void PutObject( T *src );
CUtlLeanVector<unsigned char> m_Memory;
CUtlLeanVector<unsigned char, int> m_Memory;
int m_Get;
int m_Put;