NES FDS: Fix showing "Good dump" all of the time

This commit is contained in:
goyuken 2015-03-28 15:42:02 +00:00
parent e12c711a0e
commit 9fef38dfd6
1 changed files with 3 additions and 0 deletions

View File

@ -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());