VB - mnemonics

This commit is contained in:
adelikat 2017-05-29 16:39:04 -05:00
parent 3b60a8538d
commit c0542c1301
1 changed files with 11 additions and 0 deletions

View File

@ -331,6 +331,17 @@ namespace BizHawk.Client.Common
["Red"] = 'R',
["Blue"] = 'B',
["Purple"] = 'P'
},
["VB"] = new Dictionary<string, char>
{
["L_Up"] = 'U',
["L_Down"] = 'D',
["L_Left"] = 'L',
["L_Right"] = 'R',
["R_Up"] = 'u',
["R_Down"] = 'd',
["R_Left"] = 'l',
["R_Right"] = 'r',
}
};
}