diff options
author | Morph <39850852+Morph1984@users.noreply.github.com> | 2022-11-12 20:46:17 +0100 |
---|---|---|
committer | GitHub <noreply@github.com> | 2022-11-12 20:46:17 +0100 |
commit | 8cc5ad8742a2cc4bc0c8c3eb6a9034604ca2f81b (patch) | |
tree | 662dc39a7df88f2163dd552f9812eca74a8a0012 | |
parent | Merge pull request #9226 from Kelebek1/regs_regression (diff) | |
parent | Ignore ARM for core count (diff) | |
download | yuzu-8cc5ad8742a2cc4bc0c8c3eb6a9034604ca2f81b.tar yuzu-8cc5ad8742a2cc4bc0c8c3eb6a9034604ca2f81b.tar.gz yuzu-8cc5ad8742a2cc4bc0c8c3eb6a9034604ca2f81b.tar.bz2 yuzu-8cc5ad8742a2cc4bc0c8c3eb6a9034604ca2f81b.tar.lz yuzu-8cc5ad8742a2cc4bc0c8c3eb6a9034604ca2f81b.tar.xz yuzu-8cc5ad8742a2cc4bc0c8c3eb6a9034604ca2f81b.tar.zst yuzu-8cc5ad8742a2cc4bc0c8c3eb6a9034604ca2f81b.zip |
-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 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 } } 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", |