NES stuff
This commit is contained in:
parent
81bd846a0c
commit
59440c1d4d
|
@ -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;
|
||||
}
|
||||
|
|
|
@ -661,6 +661,7 @@ namespace BizHawk.Emulation.Cores.Nintendo.NES
|
|||
}
|
||||
}
|
||||
|
||||
game_name = choice.name;
|
||||
|
||||
//find a INESBoard to handle this
|
||||
if (choice != null)
|
||||
|
|
Loading…
Reference in New Issue