Apple II - mnemonics

This commit is contained in:
adelikat 2015-04-19 14:18:35 +00:00
parent c4f608a39b
commit 0d59fd622e
1 changed files with 17 additions and 1 deletions

View File

@ -255,7 +255,23 @@ namespace BizHawk.Client.Common
{ "Option 1", '1' },
{ "Option 2", '2' }
}
}
},
{
"AppleII",
new Dictionary<string, char>
{
{ "Tab", 't' },
{ "Enter", 'e' },
{ "Escape", 'x' },
{ "Back", 'b' },
{ "Space", 's' },
{ "Ctrl", 'c' },
{ "Shift", '^' },
{ "Caps", 'C' },
{ "Next Disk", '>' },
{ "Previous Disk", '<' }
}
}
};
}
}