From 4914be571839b27fc74217adf3b137ecc4b14fad Mon Sep 17 00:00:00 2001 From: GAMMACASE <31375974+GAMMACASE@users.noreply.github.com> Date: Tue, 19 Aug 2025 16:05:44 +0300 Subject: [PATCH] Correct CUtlBuffer::m_Memory index type --- public/tier1/utlbuffer.h | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/public/tier1/utlbuffer.h b/public/tier1/utlbuffer.h index 8c59d706..5e8dd616 100644 --- a/public/tier1/utlbuffer.h +++ b/public/tier1/utlbuffer.h @@ -455,7 +455,7 @@ protected: template void PutTypeBin( T src ); template void PutObject( T *src ); - CUtlLeanVector m_Memory; + CUtlLeanVector m_Memory; int m_Get; int m_Put;