mirror of
https://git.naxdy.org/Mirror/Ryujinx.git
synced 2025-07-13 15:35:06 +00:00
Fixed whitespace issues
This commit is contained in:
parent
89c2c6c76b
commit
3f6fca2921
1 changed files with 13 additions and 6 deletions
|
@ -374,8 +374,15 @@ namespace Ryujinx.Input.SDL2
|
||||||
|
|
||||||
if (joyconStickConfig != null)
|
if (joyconStickConfig != null)
|
||||||
{
|
{
|
||||||
if (joyconStickConfig.InvertStickX) resultX = -resultX;
|
if (joyconStickConfig.InvertStickX)
|
||||||
if (joyconStickConfig.InvertStickY) resultY = -resultY;
|
{
|
||||||
|
resultX = -resultX;
|
||||||
|
}
|
||||||
|
|
||||||
|
if (joyconStickConfig.InvertStickY)
|
||||||
|
{
|
||||||
|
resultY = -resultY;
|
||||||
|
}
|
||||||
|
|
||||||
if (joyconStickConfig.Rotate90CW)
|
if (joyconStickConfig.Rotate90CW)
|
||||||
{
|
{
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue