diff options
author | Matías Locatti <matias.locatti@gmail.com> | 2022-11-12 15:31:54 -0300 |
---|---|---|
committer | Matías Locatti <matias.locatti@gmail.com> | 2022-11-12 15:31:54 -0300 |
commit | 540c1696d1d2b9b4ba1b7cf527f8a29e9fc1d67c (patch) | |
tree | 662dc39a7df88f2163dd552f9812eca74a8a0012 /src/yuzu/main.cpp | |
parent | 08091ff3e38665181fedcc476a7b83b84159e7a4 (diff) |
Ignore ARM for core count
Diffstat (limited to 'src/yuzu/main.cpp')
-rw-r--r-- | src/yuzu/main.cpp | 3 |
1 files changed, 1 insertions, 2 deletions
diff --git a/src/yuzu/main.cpp b/src/yuzu/main.cpp index 032ff1cbcb..72498f52a7 100644 --- a/src/yuzu/main.cpp +++ b/src/yuzu/main.cpp @@ -361,11 +361,10 @@ GMainWindow::GMainWindow(std::unique_ptr<Config> config_, bool has_broken_vulkan } } LOG_INFO(Frontend, "Host CPU: {}", cpu_string); -#endif - if (std::optional<int> processor_core = Common::GetProcessorCount()) { LOG_INFO(Frontend, "Host CPU Cores: {}", *processor_core); } +#endif LOG_INFO(Frontend, "Host CPU Threads: {}", processor_count); LOG_INFO(Frontend, "Host OS: {}", PrettyProductName().toStdString()); LOG_INFO(Frontend, "Host RAM: {:.2f} GiB", |