mirror of
https://github.com/sm64pc/sm64pc.git
synced 2025-04-12 00:05:59 +02:00
Merge pull request #210 from coltongit/controller-axis-fix
Fix to controller axis invert issue
This commit is contained in:
commit
1d4d92fe6d
@ -216,9 +216,9 @@ static int ivrt(u8 axis)
|
||||
if (axis == 0)
|
||||
{
|
||||
if (newcam_invertX == 0)
|
||||
return 1;
|
||||
else
|
||||
return -1;
|
||||
else
|
||||
return 1;
|
||||
}
|
||||
else
|
||||
{
|
||||
|
@ -72,7 +72,7 @@ unsigned int configCameraYSens = 50;
|
||||
unsigned int configCameraAggr = 0;
|
||||
unsigned int configCameraPan = 0;
|
||||
unsigned int configCameraDegrade = 10; // 0 - 100%
|
||||
bool configCameraInvertX = false;
|
||||
bool configCameraInvertX = true;
|
||||
bool configCameraInvertY = false;
|
||||
bool configEnableCamera = false;
|
||||
bool configCameraMouse = false;
|
||||
|
Loading…
x
Reference in New Issue
Block a user