Skip to content

Commit

Permalink
Minimum possible number of E-Cores #3160
Browse files Browse the repository at this point in the history
  • Loading branch information
seerge committed Sep 23, 2024
1 parent c6d1b29 commit 38d02ee
Showing 1 changed file with 4 additions and 1 deletion.
5 changes: 4 additions & 1 deletion app/Extra.cs
Original file line number Diff line number Diff line change
Expand Up @@ -505,7 +505,10 @@ private void InitCores()
return;
}

eCoresMax = Math.Max(8, eCoresMax);
if (eCoresMax == 0) eCoresMax = 8;
if (pCoresMax == 0) pCoresMax = 6;

eCoresMax = Math.Max(4, eCoresMax);
pCoresMax = Math.Max(6, pCoresMax);

panelCores.Visible = true;
Expand Down

0 comments on commit 38d02ee

Please sign in to comment.