diff --git a/examples/Demo/Source/Demos/SystemInfoDemo.cpp b/examples/Demo/Source/Demos/SystemInfoDemo.cpp index 73852aea59..698ceaf54f 100644 --- a/examples/Demo/Source/Demos/SystemInfoDemo.cpp +++ b/examples/Demo/Source/Demos/SystemInfoDemo.cpp @@ -122,7 +122,8 @@ static String getAllSystemInfo() << newLine; systemInfo - << "Number of CPUs: " << SystemStats::getNumCpus() << newLine + << "Number of logical CPUs: " << SystemStats::getNumCpus() << newLine + << "Number of physical CPUs: " << SystemStats::getNumPhysicalCpus() << newLine << "Memory size: " << SystemStats::getMemorySizeInMegabytes() << " MB" << newLine << "CPU vendor: " << SystemStats::getCpuVendor() << newLine << "CPU model: " << SystemStats::getCpuModel() << newLine