diff options
author | darko1979 <matesic.darko@gmail.com> | 2022-03-12 18:23:48 +0100 |
---|---|---|
committer | GitHub <noreply@github.com> | 2022-03-12 18:23:48 +0100 |
commit | bed516bfda2b558c894e80a0d71f457c6e94a62f (patch) | |
tree | 0eb05e1c391a26285e99df5d970077a52ea679ee /Ryujinx.Headless.SDL2/Program.cs | |
parent | 69b05f99187202b7c09162e4d204f4cac7772018 (diff) |
Implement rotate stick 90 degrees clockwise (#3084)1.1.68
* Implement swapping sticks
* Rotate 90 degrees clockwise
Co-authored-by: matesic.darko@gmail.com <Darkman1979>
Diffstat (limited to 'Ryujinx.Headless.SDL2/Program.cs')
-rw-r--r-- | Ryujinx.Headless.SDL2/Program.cs | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/Ryujinx.Headless.SDL2/Program.cs b/Ryujinx.Headless.SDL2/Program.cs index 4daf6084..5915a881 100644 --- a/Ryujinx.Headless.SDL2/Program.cs +++ b/Ryujinx.Headless.SDL2/Program.cs @@ -220,6 +220,7 @@ namespace Ryujinx.Headless.SDL2 StickButton = ConfigGamepadInputId.LeftStick, InvertStickX = false, InvertStickY = false, + Rotate90CW = false, }, RightJoycon = new RightJoyconCommonConfig<ConfigGamepadInputId> @@ -241,6 +242,7 @@ namespace Ryujinx.Headless.SDL2 StickButton = ConfigGamepadInputId.RightStick, InvertStickX = false, InvertStickY = false, + Rotate90CW = false, }, Motion = new StandardMotionConfigController |