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.
bios_limit
1 parent 43bdb68 commit aa1a5b8Copy full SHA for aa1a5b8
src/modules/cpu/cpu.c
@@ -57,9 +57,9 @@ void ffPrintCPU(FFCPUOptions* options)
57
ffStrbufAppendF(&str, " (%u)", cpu.coresOnline);
58
59
double freq = cpu.frequencyBiosLimit;
60
- if(freq <= 0.0000001)
+ if(!(freq > 0.0000001))
61
freq = cpu.frequencyMax;
62
63
freq = cpu.frequencyBase;
64
if(freq > 0.0000001)
65
ffStrbufAppendF(&str, " @ %.*f GHz", options->freqNdigits, freq);
0 commit comments