We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent afdbb67 commit 155b1bcCopy full SHA for 155b1bc
SerialPrograms/Source/CommonFramework/Environment/HardwareValidation_x86.tpp
@@ -53,7 +53,7 @@ bool check_hardware(){
53
box.warning(nullptr, "Warning", str);
54
}
55
56
- if (specs.base_frequency < 1'500'000'000){
+ if (specs.base_frequency < 2'000'000'000){
57
QMessageBox box;
58
QString str;
59
str += "This computer may not be powerful enough to run this program.<br><br>";
@@ -71,7 +71,7 @@ bool check_hardware(){
71
? specs.threads - specs.cores
72
: 0;
73
double efreq = (specs.cores + 0.2 * vcores) * specs.base_frequency;
74
- if (efreq < 6'000'000'000){
+ if (efreq < 8'000'000'000){
75
76
77
0 commit comments