NES stuff

This commit is contained in:
goyuken 2014-05-23 15:10:14 +00:00
parent 81bd846a0c
commit 59440c1d4d
2 changed files with 2 additions and 1 deletions

View File

@ -3004,7 +3004,7 @@ namespace BizHawk.Client.EmuHawk
if (loader.LoadedEmulator is NES)
{
var nes = loader.LoadedEmulator as NES;
if (nes.GameName != null)
if (!string.IsNullOrWhiteSpace(nes.GameName))
{
Global.Game.Name = nes.GameName;
}

View File

@ -661,6 +661,7 @@ namespace BizHawk.Emulation.Cores.Nintendo.NES
}
}
game_name = choice.name;
//find a INESBoard to handle this
if (choice != null)