From 3c18dcaa462803f9d1bc0e1bfd7a9801053eed7c Mon Sep 17 00:00:00 2001 From: "LT_Schmiddy (Alex Schmid)" Date: Sat, 16 Nov 2024 22:47:20 -0500 Subject: [PATCH] disabled movement while riding Epona. --- patches/input.c | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/patches/input.c b/patches/input.c index a92f1bd..57425f6 100644 --- a/patches/input.c +++ b/patches/input.c @@ -17,7 +17,8 @@ s32 func_8082EF20(Player* this); bool recomp_first_person_movement_allowed(PlayState* play, Player* this, bool in_free_look) { return recomp_move_in_first_person_enabled() //return recomp_analog_cam_enabled() - && play->unk_1887C == 0 + && play->unk_1887C == 0 // Prevents movement in shooting gallery. + && this->rideActor == NULL // Prevents movement on horseback. && ( in_free_look || this->currentMask != PLAYER_MASK_ZORA