Adjust extended bounds values
This commit is contained in:
parent
5767ee27c5
commit
720806394d
|
@ -32,15 +32,15 @@
|
||||||
#include "macros.h"
|
#include "macros.h"
|
||||||
|
|
||||||
//set this to the extended bounds mode you want, then do "make clean".
|
//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)
|
//the maximum amount of collision surfaces (static and dynamic combined)
|
||||||
//8200 should work fine for a 2x extended stage, the vanilla value is 2300
|
//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)
|
//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
|
//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
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
Loading…
Reference in New Issue