From 433a0f7925ef3fa93fb18513a9240c7514466153 Mon Sep 17 00:00:00 2001 From: goyuken Date: Tue, 24 Dec 2013 22:37:45 +0000 Subject: [PATCH] NES: fix oops --- BizHawk.Emulation.Cores/Consoles/Nintendo/NES/NES.cs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/BizHawk.Emulation.Cores/Consoles/Nintendo/NES/NES.cs b/BizHawk.Emulation.Cores/Consoles/Nintendo/NES/NES.cs index 7bf07e14bb..50795bff9e 100644 --- a/BizHawk.Emulation.Cores/Consoles/Nintendo/NES/NES.cs +++ b/BizHawk.Emulation.Cores/Consoles/Nintendo/NES/NES.cs @@ -48,7 +48,7 @@ namespace BizHawk.Emulation.Cores.Nintendo.NES CoreComm.UsesDriveLed = true; b.SetDriveLightCallback((val) => CoreComm.DriveLED = val); } - PutSettings(Settings); + PutSettings(Settings ?? new NESSettings()); } private NES()