diff options
author | Mary <me@thog.eu> | 2021-05-08 14:53:28 +0200 |
---|---|---|
committer | GitHub <noreply@github.com> | 2021-05-08 14:53:28 +0200 |
commit | 701c4276599dbedb05f0a8b1ec19eb7b90157799 (patch) | |
tree | 4cc0a276d950f0d2a7957490d49fb2ab5df15d96 /Ryujinx/Input/GTK3/GTK3MappingHelper.cs | |
parent | acb1647c86ee8410817ae22b38fcd481a07fe84d (diff) |
Miria: Fix GTK3 keyboard mapping (#2273)
I found some mistake I made back when I first wrote the mapping for
Miria.
This fix:
- an offset by one after the tilde key in the mapping.
- F30 being mapped to F29.
Diffstat (limited to 'Ryujinx/Input/GTK3/GTK3MappingHelper.cs')
-rw-r--r-- | Ryujinx/Input/GTK3/GTK3MappingHelper.cs | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/Ryujinx/Input/GTK3/GTK3MappingHelper.cs b/Ryujinx/Input/GTK3/GTK3MappingHelper.cs index 5e68aa40..c6be528e 100644 --- a/Ryujinx/Input/GTK3/GTK3MappingHelper.cs +++ b/Ryujinx/Input/GTK3/GTK3MappingHelper.cs @@ -48,7 +48,7 @@ namespace Ryujinx.Input.GTK3 GtkKey.F27, GtkKey.F28, GtkKey.F29, - GtkKey.F29, + GtkKey.F30, GtkKey.F31, GtkKey.F32, GtkKey.F33, @@ -128,6 +128,7 @@ namespace Ryujinx.Input.GTK3 GtkKey.Key_8, GtkKey.Key_9, GtkKey.grave, + GtkKey.grave, GtkKey.minus, GtkKey.plus, GtkKey.bracketleft, @@ -138,7 +139,6 @@ namespace Ryujinx.Input.GTK3 GtkKey.period, GtkKey.slash, GtkKey.backslash, - GtkKey.backslash, // NOTE: invalid GtkKey.blank, |