Bare minimum to unbreak some mnemonics

This commit is contained in:
nattthebear 2020-06-14 11:58:00 -04:00
parent 278317685c
commit a0aa1fb805
1 changed files with 11 additions and 0 deletions

View File

@ -36,6 +36,15 @@ namespace BizHawk.Client.Common
return key[0];
}
if (key.Contains("↑"))
return 'U';
if (key.Contains("↓"))
return 'D';
if (key.Contains("←"))
return 'L';
if (key.Contains("→"))
return 'R';
return '!';
}
@ -86,6 +95,8 @@ namespace BizHawk.Client.Common
["Start"] = 'S',
["Run"] = 'R',
["Left Shoulder"] = 'l',
["Right Shoulder"] = 'r',
["L"] = 'l',
["R"] = 'r',