diff options
| author | 2022-11-10 18:36:39 -0300 | |
|---|---|---|
| committer | 2022-11-10 18:36:39 -0300 | |
| commit | 0c176ce82833906ded6ef1973cbc201a14962a48 (patch) | |
| tree | aa102f43701e35bf02a6e0128c4cecf6ed42ef7d /src | |
| parent | Add CPU thread count to log files (diff) | |
| download | yuzu-0c176ce82833906ded6ef1973cbc201a14962a48.tar.gz yuzu-0c176ce82833906ded6ef1973cbc201a14962a48.tar.xz yuzu-0c176ce82833906ded6ef1973cbc201a14962a48.zip | |
Me likes
Co-authored-by: Morph <39850852+Morph1984@users.noreply.github.com>
Diffstat (limited to '')
| -rw-r--r-- | src/yuzu/main.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/yuzu/main.cpp b/src/yuzu/main.cpp index 1f238c913..693eaef02 100644 --- a/src/yuzu/main.cpp +++ b/src/yuzu/main.cpp | |||
| @@ -362,7 +362,7 @@ GMainWindow::GMainWindow(std::unique_ptr<Config> config_, bool has_broken_vulkan | |||
| 362 | } | 362 | } |
| 363 | LOG_INFO(Frontend, "Host CPU: {}", cpu_string); | 363 | LOG_INFO(Frontend, "Host CPU: {}", cpu_string); |
| 364 | #endif | 364 | #endif |
| 365 | LOG_INFO(Frontend, "Host CPU thread count: {}", processor_count); | 365 | LOG_INFO(Frontend, "Host CPU Threads: {}", processor_count); |
| 366 | LOG_INFO(Frontend, "Host OS: {}", PrettyProductName().toStdString()); | 366 | LOG_INFO(Frontend, "Host OS: {}", PrettyProductName().toStdString()); |
| 367 | LOG_INFO(Frontend, "Host RAM: {:.2f} GiB", | 367 | LOG_INFO(Frontend, "Host RAM: {:.2f} GiB", |
| 368 | Common::GetMemInfo().TotalPhysicalMemory / f64{1_GiB}); | 368 | Common::GetMemInfo().TotalPhysicalMemory / f64{1_GiB}); |