From 4f64d4daad992750da6635e3061217a133d57487 Mon Sep 17 00:00:00 2001 From: Pavol Marko Date: Tue, 27 Jul 2004 19:53:38 +0000 Subject: [PATCH] Fixed small bug --- amxmodx/CVector.h | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/amxmodx/CVector.h b/amxmodx/CVector.h index e2a61cd6..ae05c66a 100755 --- a/amxmodx/CVector.h +++ b/amxmodx/CVector.h @@ -76,7 +76,7 @@ template class CVector delete [] m_Data; } if (m_Size < size) - m_CurrentUsedSize = size; + m_CurrentSize = size; m_Data = newData; m_Size = size; return true;