another fix to dual gameboy mnemonics, the method can correctly accept an empty string, so check for it before indexing

This commit is contained in:
adelikat 2014-05-03 17:48:49 +00:00
parent 478e80a5d3
commit f976c2e27b
1 changed files with 5 additions and 0 deletions

View File

@ -232,6 +232,11 @@ namespace BizHawk.Client.Common
{
get
{
if (string.IsNullOrEmpty(_mnemonic))
{
return false;
}
if (_mnemonic[c] == '.')
{
return false;