From 2f805986169aabd0e4d17138cc6e0314ebfaa4f0 Mon Sep 17 00:00:00 2001 From: Mr-Auto <36127424+Mr-Auto@users.noreply.github.com> Date: Wed, 20 Sep 2023 22:18:11 +0200 Subject: [PATCH] fix camera bound in olmec level --- src/game_api/game_patches.cpp | 3 +++ 1 file changed, 3 insertions(+) diff --git a/src/game_api/game_patches.cpp b/src/game_api/game_patches.cpp index da3deab09..b29824e3e 100644 --- a/src/game_api/game_patches.cpp +++ b/src/game_api/game_patches.cpp @@ -73,6 +73,9 @@ void clear_cutscene_behavior() } } } + // fix the camera bound + state->camera->bounds_bottom = 66.75; + // some bs, don't worry about it state->entity_lookup->unknown3 = state->entity_lookup->unknown4; }