Rework performance profiles of WJ

This commit is contained in:
Timothy Baldridge 2020-09-12 14:23:49 -06:00
parent b6dbcc2368
commit efef8a2944

View File

@ -15,9 +15,9 @@ namespace Wabbajack.Lib
{
public WorkQueue Queue { get; } = new WorkQueue();
public int DownloadThreads { get; set; }
public int DiskThreads { get; set; }
public bool FavorPerfOverRam { get; set; }
public int DownloadThreads { get; set; } = Environment.ProcessorCount;
public int DiskThreads { get; set; } = Environment.ProcessorCount;
public bool FavorPerfOverRam { get; set; } = false;
public Context VFS { get; }