movie: add Disc Select, Open and Close to the dictionaries
This commit is contained in:
parent
2f0ccb99f1
commit
3b2781c571
|
@ -44,7 +44,8 @@ namespace BizHawk.Client.Common
|
|||
{ "LStick X", "lsX" },
|
||||
{ "LStick Y", "lsY" },
|
||||
{ "RStick X", "rsX" },
|
||||
{ "RStick Y", "rsY" }
|
||||
{ "RStick Y", "rsY" },
|
||||
{ "Disc Select", "Disc" }
|
||||
};
|
||||
|
||||
private readonly Dictionary<string, Dictionary<string, string>> SystemOverrides = new Dictionary<string, Dictionary<string, string>>
|
||||
|
|
|
@ -107,7 +107,10 @@ namespace BizHawk.Client.Common
|
|||
{ "Square", 'Q' },
|
||||
|
||||
{ "Toggle Left Difficulty", 'l' },
|
||||
{ "Toggle Right Difficulty", 'r' }
|
||||
{ "Toggle Right Difficulty", 'r' },
|
||||
|
||||
{ "Open", 'O' },
|
||||
{ "Close", 'C' }
|
||||
};
|
||||
|
||||
private readonly Dictionary<string, Dictionary<string, char>> SystemOverrides = new Dictionary<string, Dictionary<string, char>>
|
||||
|
|
Loading…
Reference in New Issue