From 1221f98459f31a58e4c2917c6488e2deeb4e1004 Mon Sep 17 00:00:00 2001 From: d1str4ught <> Date: Fri, 22 Aug 2025 22:42:19 +0200 Subject: [PATCH] small fix in new mem pooling --- src/EterLib/Pool.h | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/EterLib/Pool.h b/src/EterLib/Pool.h index a9306be..a8a85a1 100644 --- a/src/EterLib/Pool.h +++ b/src/EterLib/Pool.h @@ -25,7 +25,7 @@ class CDynamicPool void Destroy() { for (T* p : m_Chunks) - delete p; + ::free(p); m_Free.clear(); m_Data.clear();