From 8fdf508054336a29283d54aa33984a884defdbd8 Mon Sep 17 00:00:00 2001 From: En Yi Date: Sat, 2 Aug 2025 22:15:59 +0800 Subject: [PATCH] Readjust components quantities --- scenes/engine_impl.c | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/scenes/engine_impl.c b/scenes/engine_impl.c index 1838f94..f13c6ab 100644 --- a/scenes/engine_impl.c +++ b/scenes/engine_impl.c @@ -12,10 +12,10 @@ DEFINE_COMP_MEMPOOL_BUF(CHurtbox_t, MAX_COMP_POOL_SIZE) DEFINE_COMP_MEMPOOL_BUF(CSprite_t, MAX_COMP_POOL_SIZE) DEFINE_COMP_MEMPOOL_BUF(CMoveable_t, MAX_COMP_POOL_SIZE) DEFINE_COMP_MEMPOOL_BUF(CLifeTimer_t, MAX_COMP_POOL_SIZE) -DEFINE_COMP_MEMPOOL_BUF(CWaterRunner_t, 32) +DEFINE_COMP_MEMPOOL_BUF(CWaterRunner_t, 16) DEFINE_COMP_MEMPOOL_BUF(CAirTimer_t, 8) DEFINE_COMP_MEMPOOL_BUF(CEmitter_t, 32) -DEFINE_COMP_MEMPOOL_BUF(CSquishable_t, MAX_COMP_POOL_SIZE) +DEFINE_COMP_MEMPOOL_BUF(CSquishable_t, 255) // Component mempools are added in the order of the component enums BEGIN_DEFINE_COMP_MEMPOOL