Skip to content

Commit ee0f13b

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

1 file changed

Lines changed: 2 additions & 2 deletions

File tree

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)