We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent e2dc99e commit e6f87e0Copy full SHA for e6f87e0
src/BizHawk.Client.Common/config/Config.cs
@@ -188,12 +188,12 @@ public void SetWindowScaleFor(string sysID, int windowScale)
188
/// <summary>
189
/// Whether to make AutoSave files at periodic intervals
190
/// </summary>
191
- public bool AutosaveSaveRAM { get; set; }
+ public bool AutosaveSaveRAM { get; set; } = true;
192
193
194
/// Intervals at which to make AutoSave files
195
196
- public int FlushSaveRamFrames { get; set; }
+ public int FlushSaveRamFrames { get; set; } = 5/*min*/ * 60/*s/min*/ * 60/*fr/s*/;
197
198
public bool TurboSeek { get; set; }
199
0 commit comments