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> new Dictionary<string, char>
{ {
{ "Tab", 't' }, { "Tab", 't' },
{ "Enter", 'e' }, { "Return", 'e' },
{ "Escape", 'x' }, { "Escape", 'x' },
{ "Back", 'b' }, { "Delete", 'b' },
{ "Space", 's' }, { "Space", 's' },
{ "Ctrl", 'c' }, { "Control", 'c' },
{ "Shift", '^' }, { "Shift", '^' },
{ "Caps", 'C' }, { "Caps Lock", 'C' },
{ "Next Disk", '>' }, { "Next Disk", '>' },
{ "Previous Disk", '<' } { "Previous Disk", '<' },
{ "White Apple", 'w' },
{ "Black Apple", 'b' }
} }
} }
}; };