Skip to content

Commit 155b1bc

Browse files
committed
Increase minimum CPU specs.
1 parent afdbb67 commit 155b1bc

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

SerialPrograms/Source/CommonFramework/Environment/HardwareValidation_x86.tpp

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -53,7 +53,7 @@ bool check_hardware(){
5353
box.warning(nullptr, "Warning", str);
5454
}
5555

56-
if (specs.base_frequency < 1'500'000'000){
56+
if (specs.base_frequency < 2'000'000'000){
5757
QMessageBox box;
5858
QString str;
5959
str += "This computer may not be powerful enough to run this program.<br><br>";
@@ -71,7 +71,7 @@ bool check_hardware(){
7171
? specs.threads - specs.cores
7272
: 0;
7373
double efreq = (specs.cores + 0.2 * vcores) * specs.base_frequency;
74-
if (efreq < 6'000'000'000){
74+
if (efreq < 8'000'000'000){
7575
QMessageBox box;
7676
QString str;
7777
str += "This computer may not be powerful enough to run this program.<br><br>";

0 commit comments

Comments
 (0)