From 9fef38dfd63645be4a28ab74dd882576a5637bee Mon Sep 17 00:00:00 2001 From: goyuken Date: Sat, 28 Mar 2015 15:42:02 +0000 Subject: [PATCH] NES FDS: Fix showing "Good dump" all of the time --- BizHawk.Emulation.Cores/Consoles/Nintendo/NES/NES.cs | 3 +++ 1 file changed, 3 insertions(+) diff --git a/BizHawk.Emulation.Cores/Consoles/Nintendo/NES/NES.cs b/BizHawk.Emulation.Cores/Consoles/Nintendo/NES/NES.cs index 7ef1f07271..1a595c6f66 100644 --- a/BizHawk.Emulation.Cores/Consoles/Nintendo/NES/NES.cs +++ b/BizHawk.Emulation.Cores/Consoles/Nintendo/NES/NES.cs @@ -50,6 +50,9 @@ namespace BizHawk.Emulation.Cores.Nintendo.NES { DriveLightEnabled = true; (Board as FDS).SetDriveLightCallback((val) => DriveLightOn = val); + // bit of a hack: we don't have a private gamedb for FDS, but the frontend + // expects this to be set. + RomStatus = game.Status; } PutSettings((NESSettings)Settings ?? new NESSettings());