Skip to content

Commit e6f87e0

Browse files
committed
Enable AutoSaveRAM by default
long overdue; explicit reversal of the "manual only" policy we had prior
1 parent e2dc99e commit e6f87e0

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

src/BizHawk.Client.Common/config/Config.cs

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -188,12 +188,12 @@ public void SetWindowScaleFor(string sysID, int windowScale)
188188
/// <summary>
189189
/// Whether to make AutoSave files at periodic intervals
190190
/// </summary>
191-
public bool AutosaveSaveRAM { get; set; }
191+
public bool AutosaveSaveRAM { get; set; } = true;
192192

193193
/// <summary>
194194
/// Intervals at which to make AutoSave files
195195
/// </summary>
196-
public int FlushSaveRamFrames { get; set; }
196+
public int FlushSaveRamFrames { get; set; } = 5/*min*/ * 60/*s/min*/ * 60/*fr/s*/;
197197

198198
public bool TurboSeek { get; set; }
199199

0 commit comments

Comments
 (0)