Fixed "name can be simplified"

This commit is contained in:
Joshua Askharoun
2021-03-31 17:20:20 -05:00
parent 9b09412b45
commit 799fca8d97
384 changed files with 3966 additions and 3966 deletions
@@ -65,7 +65,7 @@ namespace Microsoft.Iris.Input
public static CommandCode Find(uint usage, uint usagePage)
{
foreach (HIDCommandMapping mapping in HIDCommandMapping.s_mappings)
foreach (HIDCommandMapping mapping in s_mappings)
{
if ((int)mapping._usage == (int)usage && (int)mapping._usagePage == (int)usagePage)
return mapping._command;