Tastudio - in non-developer builds, set the minimum savestate frequency from 2 to 1

This commit is contained in:
adelikat 2014-11-19 16:22:03 +00:00
parent d7596684c2
commit b4f7e13d1b
1 changed files with 1 additions and 1 deletions

View File

@ -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
{