movie: add Disc Select, Open and Close to the dictionaries

This commit is contained in:
feos 2016-11-26 16:39:21 +03:00
parent 2f0ccb99f1
commit 3b2781c571
2 changed files with 6 additions and 2 deletions

View File

@ -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>>

View File

@ -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>>