Tastudio - in non-developer builds, set the minimum savestate frequency from 2 to 1
This commit is contained in:
parent
d7596684c2
commit
b4f7e13d1b
|
@ -18,7 +18,7 @@ namespace BizHawk.Client.Common
|
|||
private readonly TasMovie _movie;
|
||||
private int _expectedStateSize = 0;
|
||||
|
||||
private const int _minFrequency = 2;
|
||||
private int _minFrequency = VersionInfo.DeveloperBuild ? 2 : 1;
|
||||
private const int _maxFrequency = 16;
|
||||
private int StateFrequency
|
||||
{
|
||||
|
|
Loading…
Reference in New Issue