1
0
mirror of https://github.com/alliedmodders/hl2sdk.git synced 2025-09-19 03:56:10 +08:00

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;