some mnemonics for colecovision peripheral buttons

This commit is contained in:
adelikat 2017-05-06 19:08:46 -05:00
parent ac767a2acc
commit cb24ed1d22
1 changed files with 12 additions and 1 deletions

View File

@ -112,7 +112,8 @@ namespace BizHawk.Client.Common
{ "Toggle Right Difficulty", 'r' },
{ "Open", 'O' },
{ "Close", 'C' }
{ "Close", 'C' },
{ "Pedal", 'P' }
};
private readonly Dictionary<string, Dictionary<string, char>> SystemOverrides = new Dictionary<string, Dictionary<string, char>>
@ -349,6 +350,16 @@ namespace BizHawk.Client.Common
{ "NW", '\\' },
{ "NNW", 'n' }
}
},
{
"Coleco",
new Dictionary<string, char>
{
{ "Yellow", 'Y' },
{ "Red", 'R' },
{ "Blue", 'B' },
{ "Purple", 'P' }
}
}
};
}