summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorGravatar Matías Locatti2022-11-12 15:31:54 -0300
committerGravatar Matías Locatti2022-11-12 15:31:54 -0300
commit540c1696d1d2b9b4ba1b7cf527f8a29e9fc1d67c (patch)
tree662dc39a7df88f2163dd552f9812eca74a8a0012
parentMerge pull request #9226 from Kelebek1/regs_regression (diff)
downloadyuzu-540c1696d1d2b9b4ba1b7cf527f8a29e9fc1d67c.tar.gz
yuzu-540c1696d1d2b9b4ba1b7cf527f8a29e9fc1d67c.tar.xz
yuzu-540c1696d1d2b9b4ba1b7cf527f8a29e9fc1d67c.zip
Ignore ARM for core count
Diffstat (limited to '')
-rw-r--r--src/yuzu/main.cpp3
1 files changed, 1 insertions, 2 deletions
diff --git a/src/yuzu/main.cpp b/src/yuzu/main.cpp
index 032ff1cbc..72498f52a 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
361 } 361 }
362 } 362 }
363 LOG_INFO(Frontend, "Host CPU: {}", cpu_string); 363 LOG_INFO(Frontend, "Host CPU: {}", cpu_string);
364#endif
365
366 if (std::optional<int> processor_core = Common::GetProcessorCount()) { 364 if (std::optional<int> processor_core = Common::GetProcessorCount()) {
367 LOG_INFO(Frontend, "Host CPU Cores: {}", *processor_core); 365 LOG_INFO(Frontend, "Host CPU Cores: {}", *processor_core);
368 } 366 }
367#endif
369 LOG_INFO(Frontend, "Host CPU Threads: {}", processor_count); 368 LOG_INFO(Frontend, "Host CPU Threads: {}", processor_count);
370 LOG_INFO(Frontend, "Host OS: {}", PrettyProductName().toStdString()); 369 LOG_INFO(Frontend, "Host OS: {}", PrettyProductName().toStdString());
371 LOG_INFO(Frontend, "Host RAM: {:.2f} GiB", 370 LOG_INFO(Frontend, "Host RAM: {:.2f} GiB",