Apple II mnemonics

This commit is contained in:
adelikat 2015-05-18 02:01:57 +00:00
parent d91e6f184a
commit 0cb912cfb2
1 changed files with 7 additions and 5 deletions

View File

@ -261,15 +261,17 @@ namespace BizHawk.Client.Common
new Dictionary<string, char>
{
{ "Tab", 't' },
{ "Enter", 'e' },
{ "Return", 'e' },
{ "Escape", 'x' },
{ "Back", 'b' },
{ "Delete", 'b' },
{ "Space", 's' },
{ "Ctrl", 'c' },
{ "Control", 'c' },
{ "Shift", '^' },
{ "Caps", 'C' },
{ "Caps Lock", 'C' },
{ "Next Disk", '>' },
{ "Previous Disk", '<' }
{ "Previous Disk", '<' },
{ "White Apple", 'w' },
{ "Black Apple", 'b' }
}
}
};