trunk and 1.5x branch - turn off rewind for "medium" states, as SNES problems still occur with default settings and it isn't worth it, also change the default rewind frequency to 4 (if the user does turn it on, this frequency still gives smooth rewind)
This commit is contained in:
parent
5f9eb69292
commit
fd89c0cff4
|
@ -89,10 +89,10 @@ namespace BizHawk.Client.Common
|
||||||
//Rewind settings
|
//Rewind settings
|
||||||
public bool Rewind_UseDelta = true;
|
public bool Rewind_UseDelta = true;
|
||||||
public bool RewindEnabledSmall = true;
|
public bool RewindEnabledSmall = true;
|
||||||
public bool RewindEnabledMedium = true;
|
public bool RewindEnabledMedium = false;
|
||||||
public bool RewindEnabledLarge = false;
|
public bool RewindEnabledLarge = false;
|
||||||
public int RewindFrequencySmall = 1;
|
public int RewindFrequencySmall = 1;
|
||||||
public int RewindFrequencyMedium = 2;
|
public int RewindFrequencyMedium = 4;
|
||||||
public int RewindFrequencyLarge = 60;
|
public int RewindFrequencyLarge = 60;
|
||||||
public int Rewind_MediumStateSize = 262144; //256kb
|
public int Rewind_MediumStateSize = 262144; //256kb
|
||||||
public int Rewind_LargeStateSize = 1048576; //1mb
|
public int Rewind_LargeStateSize = 1048576; //1mb
|
||||||
|
|
Loading…
Reference in New Issue