mirror of
https://git.rip/DMCA_FUCKER/re3.git
synced 2024-11-07 15:54:56 +00:00
Fix inverted vertical camera
This commit is contained in:
parent
0d55b6182a
commit
5a59542679
|
@ -4626,7 +4626,7 @@ CCam::Process_FollowPed_Rotation(const CVector &CameraTarget, float TargetOrient
|
|||
*/
|
||||
{
|
||||
LookLeftRight = -CPad::GetPad(0)->LookAroundLeftRight();
|
||||
LookUpDown = -CPad::GetPad(0)->LookAroundUpDown();
|
||||
LookUpDown = CPad::GetPad(0)->LookAroundUpDown();
|
||||
}
|
||||
float AlphaOffset, BetaOffset;
|
||||
if(UseMouse){
|
||||
|
|
|
@ -3222,6 +3222,9 @@ int16 CPad::SniperModeLookUpDown(void)
|
|||
int16 axis = NewState.LeftStickY;
|
||||
int16 dpad;
|
||||
|
||||
#ifdef FIX_BUGS
|
||||
axis = -axis;
|
||||
#endif
|
||||
if (CPad::bInvertLook4Pad) {
|
||||
axis = -axis;
|
||||
dpad = (NewState.DPadDown - NewState.DPadUp) / 2;
|
||||
|
@ -3257,7 +3260,9 @@ int16 CPad::LookAroundLeftRight(void)
|
|||
int16 CPad::LookAroundUpDown(void)
|
||||
{
|
||||
int16 axis = GetPad(0)->NewState.RightStickY;
|
||||
|
||||
#ifdef FIX_BUGS
|
||||
axis = -axis;
|
||||
#endif
|
||||
if (CPad::bInvertLook4Pad)
|
||||
axis = -axis;
|
||||
|
||||
|
|
Loading…
Reference in a new issue