diff --git a/Ryujinx/Input/GTK3/GTK3MappingHelper.cs b/Ryujinx/Input/GTK3/GTK3MappingHelper.cs index 1035e4153..7a72a6093 100644 --- a/Ryujinx/Input/GTK3/GTK3MappingHelper.cs +++ b/Ryujinx/Input/GTK3/GTK3MappingHelper.cs @@ -1,5 +1,6 @@ using System; using System.Collections.Generic; +using System.Linq; using System.Runtime.CompilerServices; using GtkKey = Gdk.Key; @@ -150,22 +151,15 @@ namespace Ryujinx.Input.GTK3 static GTK3MappingHelper() { - var inputKeys = Enum.GetValues(); + var inputKeys = Enum.GetValues().SkipLast(1); // GtkKey is not contiguous and quite large, so use a dictionary instead of an array. _gtkKeyMapping = new Dictionary(); foreach (var key in inputKeys) { - try - { - var index = ToGtkKey((Key)key); - _gtkKeyMapping[index] = (Key)key; - } - catch - { - // Skip invalid mappings. - } + var index = ToGtkKey(key); + _gtkKeyMapping[index] = key; } }