From 80b710f4822cf0e53825662ae8a8c070e5d83c55 Mon Sep 17 00:00:00 2001 From: headshot2017 Date: Fri, 3 Feb 2023 19:25:11 -0400 Subject: [PATCH] increase cell_height and floor_lower limits a change from ckosmic's fork that went past my radar --- src/decomp/engine/surface_collision.h | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/decomp/engine/surface_collision.h b/src/decomp/engine/surface_collision.h index 5f1995a..ee1b958 100644 --- a/src/decomp/engine/surface_collision.h +++ b/src/decomp/engine/surface_collision.h @@ -9,8 +9,8 @@ #define LEVEL_BOUNDARY_MAX 0x2000 #define CELL_SIZE 0x400 -#define CELL_HEIGHT_LIMIT 20000.f -#define FLOOR_LOWER_LIMIT -11000.f +#define CELL_HEIGHT_LIMIT 100000.f +#define FLOOR_LOWER_LIMIT -110000.f s32 f32_find_wall_collision(f32 *xPtr, f32 *yPtr, f32 *zPtr, f32 offsetY, f32 radius); s32 find_wall_collisions(struct SM64WallCollisionData *colData);