Fix mnemonic lookups for C64 keyboard
This commit is contained in:
parent
b6d478998b
commit
6e7fefb7b4
|
@ -173,36 +173,38 @@ namespace BizHawk.Client.Common
|
|||
"C64",
|
||||
new Dictionary<string, char>
|
||||
{
|
||||
{"Key F1", '1' },
|
||||
{"Key F3", '3' },
|
||||
{"Key F5", '5' },
|
||||
{"Key F7", '7' },
|
||||
{"Key Left Arrow", 'l' },
|
||||
{"Key Plus", '+' },
|
||||
{"Key Minus", '-' },
|
||||
{"Key Pound", 'l' },
|
||||
{"Key Clear/Home", 'c' },
|
||||
{"Key Insert/Delete", 'i' },
|
||||
{"Key Control", 'c' },
|
||||
{"Key At", '@' },
|
||||
{"Key Asterisk", '*' },
|
||||
{"Key Up Arrow", 'u' },
|
||||
{"Key Restore", 'r' },
|
||||
{"Key Run/Stop", 's' },
|
||||
{"Key Lck", 'k' },
|
||||
{"Key Colon", ':' },
|
||||
{"Key Semicolon", ';' },
|
||||
{"Key Equal", '=' },
|
||||
{"Key Return", 'e'},
|
||||
{"Key Commodore", 'o' },
|
||||
{"Key Left Shift", 's' },
|
||||
{"Key Comma", ',' },
|
||||
{"Key Period", '>' },
|
||||
{"Key Slash", '/' },
|
||||
{"Key Right Shift", 's' },
|
||||
{"Key Cursor Up/Down", 'u' },
|
||||
{"Key Cursor Left/Right", 'l' },
|
||||
{"Key Space", '_' }
|
||||
{ "L", 'L' },
|
||||
{ "R", 'R' },
|
||||
{ "F1", '1' },
|
||||
{ "F3", '3' },
|
||||
{ "F5", '5' },
|
||||
{ "F7", '7' },
|
||||
{ "Left Arrow", 'l' },
|
||||
{ "Plus", '+' },
|
||||
{ "Minus", '-' },
|
||||
{ "Pound", 'l' },
|
||||
{ "Clear/Home", 'c' },
|
||||
{ "Insert/Delete", 'i' },
|
||||
{ "Control", 'c' },
|
||||
{ "At", '@' },
|
||||
{ "Asterisk", '*' },
|
||||
{ "Up Arrow", 'u' },
|
||||
{ "Restore", 'r' },
|
||||
{ "Run/Stop", 's' },
|
||||
{ "Lck", 'k' },
|
||||
{ "Colon", ':' },
|
||||
{ "Semicolon", ';' },
|
||||
{ "Equal", '=' },
|
||||
{ "Return", 'e'},
|
||||
{ "Commodore", 'o' },
|
||||
{ "Left Shift", 's' },
|
||||
{ "Comma", ',' },
|
||||
{ "Period", '>' },
|
||||
{ "Slash", '/' },
|
||||
{ "Right Shift", 's' },
|
||||
{ "Cursor Up/Down", 'u' },
|
||||
{ "Cursor Left/Right", 'l' },
|
||||
{ "Space", '_' }
|
||||
}
|
||||
},
|
||||
{
|
||||
|
|
Loading…
Reference in New Issue