From a68cf1708042d6407f9332cd285bb6c63597847d Mon Sep 17 00:00:00 2001 From: MysterD Date: Sat, 16 Apr 2022 21:34:49 -0700 Subject: [PATCH] Adjust extended bounds values --- src/engine/extended_bounds.h | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/src/engine/extended_bounds.h b/src/engine/extended_bounds.h index 33ef1ca4..73540d00 100644 --- a/src/engine/extended_bounds.h +++ b/src/engine/extended_bounds.h @@ -32,15 +32,15 @@ #include "macros.h" //set this to the extended bounds mode you want, then do "make clean". -#define EXTENDED_BOUNDS_MODE 1 +#define EXTENDED_BOUNDS_MODE 3 //the maximum amount of collision surfaces (static and dynamic combined) //8200 should work fine for a 2x extended stage, the vanilla value is 2300 -#define SURFACE_POOL_SIZE 8200 +#define SURFACE_POOL_SIZE 0x4000 //make this approximately (amount of collision cells) + (SURFACE_POOL_SIZE * 3) //22000 should work fine for a 2x extended stage, the vanilla value is 7000 -#define SURFACE_NODE_POOL_SIZE 22000 +#define SURFACE_NODE_POOL_SIZE 0x10000