From 432cbc54d7b1726beca30516de541b621a4530e1 Mon Sep 17 00:00:00 2001 From: nattthebear Date: Sun, 23 Apr 2017 13:25:29 -0400 Subject: [PATCH] it annoyed me --- .../Consoles/Nintendo/GBA/VBANext.cs | 13 +++++++------ 1 file changed, 7 insertions(+), 6 deletions(-) diff --git a/BizHawk.Emulation.Cores/Consoles/Nintendo/GBA/VBANext.cs b/BizHawk.Emulation.Cores/Consoles/Nintendo/GBA/VBANext.cs index 36b3dbb574..679b5df01a 100644 --- a/BizHawk.Emulation.Cores/Consoles/Nintendo/GBA/VBANext.cs +++ b/BizHawk.Emulation.Cores/Consoles/Nintendo/GBA/VBANext.cs @@ -29,12 +29,13 @@ namespace BizHawk.Emulation.Cores.Nintendo.GBA if (biosfile.Length != 16 * 1024) throw new ArgumentException("BIOS file is not exactly 16K!"); - LibVBANext.FrontEndSettings FES = new LibVBANext.FrontEndSettings(); - FES.saveType = (LibVBANext.FrontEndSettings.SaveType)game.GetInt("saveType", 0); - FES.flashSize = (LibVBANext.FrontEndSettings.FlashSize)game.GetInt("flashSize", 0x10000); - FES.enableRtc = game.GetInt("rtcEnabled", 0) != 0; - FES.mirroringEnable = game.GetInt("mirroringEnabled", 0) != 0; - + var FES = new LibVBANext.FrontEndSettings + { + saveType = (LibVBANext.FrontEndSettings.SaveType)game.GetInt("saveType", 0), + flashSize = (LibVBANext.FrontEndSettings.FlashSize)game.GetInt("flashSize", 0x10000), + enableRtc = game.GetInt("rtcEnabled", 0) != 0, + mirroringEnable = game.GetInt("mirroringEnabled", 0) != 0 + }; Console.WriteLine("GameDB loaded settings: saveType={0}, flashSize={1}, rtcEnabled={2}, mirroringEnabled={3}", FES.saveType, FES.flashSize, FES.enableRtc, FES.mirroringEnable);