Make use sram default in some cores that have this as an option

true is what end users would expect most of the time.  false is only for advanced use cases.
This commit is contained in:
nattthebear 2020-06-05 14:11:09 -04:00
parent 8b5e0ae8fd
commit 6a63373c48
5 changed files with 5 additions and 5 deletions

View File

@ -64,7 +64,7 @@ namespace BizHawk.Emulation.Cores.Consoles.O2Hawk
{
[DisplayName("Use Existing SaveRAM")]
[Description("When true, existing SaveRAM will be loaded at boot up")]
[DefaultValue(false)]
[DefaultValue(true)]
public bool Use_SRAM { get; set; }
public O2SyncSettings Clone()

View File

@ -126,7 +126,7 @@ namespace BizHawk.Emulation.Cores.Nintendo.GBHawkLink
[DisplayName("Use Existing SaveRAM")]
[Description("When true, existing SaveRAM will be loaded at boot up")]
[DefaultValue(false)]
[DefaultValue(true)]
public bool Use_SRAM { get; set; }
[JsonIgnore]

View File

@ -143,7 +143,7 @@ namespace BizHawk.Emulation.Cores.Nintendo.GBHawkLink3x
[DisplayName("Use Existing SaveRAM")]
[Description("When true, existing SaveRAM will be loaded at boot up")]
[DefaultValue(false)]
[DefaultValue(true)]
public bool Use_SRAM { get; set; }
[JsonIgnore]

View File

@ -172,7 +172,7 @@ namespace BizHawk.Emulation.Cores.Nintendo.GBHawkLink4x
[DisplayName("Use Existing SaveRAM")]
[Description("When true, existing SaveRAM will be loaded at boot up")]
[DefaultValue(false)]
[DefaultValue(true)]
public bool Use_SRAM { get; set; }
[JsonIgnore]

View File

@ -57,7 +57,7 @@ namespace BizHawk.Emulation.Cores.Sega.GGHawkLink
[DisplayName("Use Existing SaveRAM")]
[Description("When true, existing SaveRAM will be loaded at boot up")]
[DefaultValue(false)]
[DefaultValue(true)]
public bool Use_SRAM { get; set; }
public GGLinkSyncSettings Clone()