Remove first person checks from update flying pitch

This commit is contained in:
Agent X 2023-12-23 13:05:12 -05:00
parent cc35c3eb99
commit 1277b7369c
1 changed files with 0 additions and 5 deletions

View File

@ -21,7 +21,6 @@
#include "pc/network/network.h"
#include "pc/lua/smlua.h"
#include "hardcoded.h"
#include "first_person_cam.h"
void play_flip_sounds(struct MarioState *m, s16 frame1, s16 frame2, s16 frame3) {
if (!m) { return; }
@ -327,10 +326,6 @@ void update_flying_yaw(struct MarioState *m) {
void update_flying_pitch(struct MarioState *m) {
if (!m) { return; }
s16 targetPitchVel = -(s16)(m->controller->stickY * (m->forwardVel / 5.0f));
if (get_first_person_enabled()) {
f32 mag = ((f32)gFirstPersonCamera.pitch / 0x3F00) * 64;
targetPitchVel = -(s16)(mag * (m->forwardVel / 5.0f));
}
if (targetPitchVel > 0) {
if (m->angleVel[0] < 0) {