diff options
author | bunnei <bunneidev@gmail.com> | 2022-03-11 17:26:41 -0800 |
---|---|---|
committer | GitHub <noreply@github.com> | 2022-03-11 17:26:41 -0800 |
commit | 27cc7b6a73121ff7d467772da460a9ca85cd85bc (patch) | |
tree | a0bc65a2fba8947a7235de75394a93a4283cd101 /src/yuzu/main.cpp | |
parent | 5c74dd6462feba358fa7facfc5d1845439227ecb (diff) | |
parent | d248c1203ea15992e6ca3a087a02fac76490deba (diff) |
Merge pull request #7997 from Wunkolo/cpu_detect_more
cpu_detect: Add additional x86 flags and telemetry
Diffstat (limited to 'src/yuzu/main.cpp')
-rw-r--r-- | src/yuzu/main.cpp | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/src/yuzu/main.cpp b/src/yuzu/main.cpp index b3a8da0eae..1d459bdb32 100644 --- a/src/yuzu/main.cpp +++ b/src/yuzu/main.cpp @@ -249,9 +249,9 @@ GMainWindow::GMainWindow() #ifdef ARCHITECTURE_x86_64 const auto& caps = Common::GetCPUCaps(); std::string cpu_string = caps.cpu_string; - if (caps.avx || caps.avx2 || caps.avx512) { + if (caps.avx || caps.avx2 || caps.avx512f) { cpu_string += " | AVX"; - if (caps.avx512) { + if (caps.avx512f) { cpu_string += "512"; } else if (caps.avx2) { cpu_string += '2'; |