From c4c414dd654ba6b56eac4b87b5d13781ef14fc30 Mon Sep 17 00:00:00 2001 From: John Clemis Date: Wed, 8 Aug 2018 20:57:05 -0500 Subject: [PATCH] Revert "Address Feedback" This reverts commit 8519992473fd0488fe88e7ea4ade6ce86f29d1b7. --- Ryujinx/Ui/GLScreen.cs | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/Ryujinx/Ui/GLScreen.cs b/Ryujinx/Ui/GLScreen.cs index e063fd992..6306c32c3 100644 --- a/Ryujinx/Ui/GLScreen.cs +++ b/Ryujinx/Ui/GLScreen.cs @@ -160,7 +160,7 @@ namespace Ryujinx case "DPADRIGHT": return GamePad.DPad.Right; case "START": return GamePad.Buttons.Start; case "BACK": return GamePad.Buttons.Back; - default: throw new ArgumentException(); + default: throw new ArgumentException(); } } @@ -170,7 +170,7 @@ namespace Ryujinx { case "LTRIGGER": return GamePad.Triggers.Left; case "RTRIGGER": return GamePad.Triggers.Right; - default: throw new ArgumentException(); + default: throw new ArgumentException(); } } @@ -186,7 +186,7 @@ namespace Ryujinx case "-JOYSTICKAXIS1": return -GamePad.ThumbSticks.Left.Y; case "-JOYSTICKAXIS2": return -GamePad.ThumbSticks.Right.X; case "-JOYSTICKAXIS3": return -GamePad.ThumbSticks.Right.Y; - default: throw new ArgumentException(nameof(Joystick)); + default: throw new ArgumentException(nameof(Joystick)); } }