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 f28f5e2 commit 88ebeb2Copy full SHA for 88ebeb2
src/modules/cpu/cpu.c
@@ -69,12 +69,7 @@ void ffPrintCPU(FFCPUOptions* options)
69
if(coreTypes.length > 0)
70
ffStrbufAppendF(&str, " (%s)", coreTypes.chars);
71
else if(cpu.coresOnline > 1)
72
- {
73
- if(cpu.packages > 1)
74
- ffStrbufAppendF(&str, " (%u)", cpu.coresOnline / 2);
75
- else
76
- ffStrbufAppendF(&str, " (%u)", cpu.coresOnline);
77
- }
+ ffStrbufAppendF(&str, " (%u)", cpu.coresOnline);
78
79
uint32_t freq = cpu.frequencyMax;
80
if(freq == 0)
0 commit comments