From 7d512f21913b3ed7dee2a025fdc1dea77a08d83b Mon Sep 17 00:00:00 2001 From: peterbell10 Date: Tue, 19 Feb 2019 10:22:08 +0000 Subject: Limit the size of cListAllocationPool's free list --- src/ChunkMap.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'src/ChunkMap.cpp') diff --git a/src/ChunkMap.cpp b/src/ChunkMap.cpp index 4936b11eb..dd8f1add1 100644 --- a/src/ChunkMap.cpp +++ b/src/ChunkMap.cpp @@ -39,7 +39,7 @@ cChunkMap::cChunkMap(cWorld * a_World) : m_World(a_World), m_Pool( cpp14::make_unique>( - cpp14::make_unique(), 1600u + cpp14::make_unique(), 1600u, 5000u ) ) { -- cgit v1.2.3