bk2 mnemonic lookup - remove some nyma hacks now that nyma directional buttons conform to the typical naming scheme

This commit is contained in:
adelikat 2020-06-15 12:59:54 -05:00
parent b8bea93cce
commit 4122a51153
1 changed files with 0 additions and 9 deletions
src/BizHawk.Client.Common/movie/bk2

View File

@ -35,15 +35,6 @@ 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 '!';
}