From 9b73f46affa8416603ef082dd2f9052a827d128e Mon Sep 17 00:00:00 2001 From: Mitchell Richters Date: Sun, 11 Dec 2022 15:56:42 +1100 Subject: [PATCH] - SW: Don't reset player pitch upon death. * This _somewhat_ addresses #770 by hiding the effects of it. * Since we re-init `Player::Angles` when a new actor is spawned, this all resets anyway. --- source/games/sw/src/player.cpp | 3 --- 1 file changed, 3 deletions(-) diff --git a/source/games/sw/src/player.cpp b/source/games/sw/src/player.cpp index 074d2e256..72187d346 100644 --- a/source/games/sw/src/player.cpp +++ b/source/games/sw/src/player.cpp @@ -6023,10 +6023,8 @@ void DoPlayerDeathCheckKeys(PLAYER* pp) pp->Flags &= ~(PF_DEAD); plActor->spr.cstat &= ~(CSTAT_SPRITE_YCENTER); plActor->spr.cstat |= (CSTAT_SPRITE_BLOCK|CSTAT_SPRITE_BLOCK_HITSCAN); - pp->input.actions |= SB_CENTERVIEW; plActor->spr.scale = DVector2(PLAYER_NINJA_XREPEAT, PLAYER_NINJA_YREPEAT); - pp->actor->spr.Angles.Pitch = nullAngle; plActor->user.ID = NINJA_RUN_R0; PlayerDeathReset(pp); @@ -7086,7 +7084,6 @@ void InitAllPlayers(void) pp->FadeAmt = 0; pp->FadeTics = 0; pp->StartColor = 0; - pp->Angles.ViewAngles.Pitch = nullAngle; INITLIST(&pp->PanelSpriteList); }