Skip to content

Commit 82ba214

Browse files
committed
Fix some keyboard keys to match newer Dolphin syntax and add the arrow directions which are likely somewhat common
1 parent 475184c commit 82ba214

1 file changed

Lines changed: 6 additions & 4 deletions

File tree

Data/HostDevice.cs

Lines changed: 6 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -40,11 +40,13 @@ public string Name
4040
{
4141
suggestions.Add(c.ToString());
4242
}
43-
suggestions.Add("LSHIFT");
44-
suggestions.Add("RSHIFT");
45-
suggestions.Add("LCONTROL");
46-
suggestions.Add("RCONTROL");
43+
suggestions.Add("Shift");
44+
suggestions.Add("Ctrl");
4745
suggestions.Add("SPACE");
46+
suggestions.Add("UP");
47+
suggestions.Add("DOWN");
48+
suggestions.Add("LEFT");
49+
suggestions.Add("RIGHT");
4850

4951
suggestions.Sort();
5052

0 commit comments

Comments
 (0)