summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authoresquizo <esquizo+noreply@esquizo.net>2026-05-21 20:34:34 -0300
committeresquizo <esquizo+noreply@esquizo.net>2026-05-21 20:34:34 -0300
commit26e55acd6d11d472fce44aad2f012e7d5755430d (patch)
treed612f4f3119f7e1fe3c82fff0c0759e13af79d0a
parent1047bed569232312619122f56ee4a6b2a323cc1c (diff)
libphysics: aumentado o tamanho da pool para 1M
-rw-r--r--libphysics/body.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/libphysics/body.c b/libphysics/body.c
index 51a352d..d8a17e5 100644
--- a/libphysics/body.c
+++ b/libphysics/body.c
@@ -4,7 +4,7 @@
#include "dat.h"
-#define POOL_SIZE 2048
+#define POOL_SIZE (1024 * 1024)
Body phxbodypool[POOL_SIZE];
int phxbodypoolsize;