Use threaded rewind by default on multi-core/processor machines.

This commit is contained in:
jdpurcell 2015-01-18 21:20:21 +00:00
parent 0620246ef4
commit 6da53b535b
1 changed files with 1 additions and 1 deletions
BizHawk.Client.Common/config

View File

@ -153,7 +153,7 @@ namespace BizHawk.Client.Common
public int Rewind_LargeStateSize = 1048576; //1mb
public int Rewind_BufferSize = 128; //in mb
public bool Rewind_OnDisk = false;
public bool Rewind_IsThreaded = false;
public bool Rewind_IsThreaded = Environment.ProcessorCount > 1;
// Savestate settings
public SaveStateTypeE SaveStateType = SaveStateTypeE.Default;