diff options
Diffstat (limited to 'src/zencore/include')
| -rw-r--r-- | src/zencore/include/zencore/system.h | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/src/zencore/include/zencore/system.h b/src/zencore/include/zencore/system.h index 23665fb09..aec2e0ce4 100644 --- a/src/zencore/include/zencore/system.h +++ b/src/zencore/include/zencore/system.h @@ -16,9 +16,9 @@ std::string_view GetCpuName(); struct SystemMetrics { - int CpuCount = 1; - int CoreCount = 1; - int LogicalProcessorCount = 1; + uint32_t CpuCount = 1; + uint32_t CoreCount = 1; + uint32_t LogicalProcessorCount = 1; uint64_t SystemMemoryMiB = 0; uint64_t AvailSystemMemoryMiB = 0; uint64_t VirtualMemoryMiB = 0; |