early-access version 2541

This commit is contained in:
pineappleEA
2022-03-12 03:36:45 +01:00
parent 6f3fc253f0
commit 6924df7d97
7 changed files with 91 additions and 35 deletions
+2 -2
View File
@@ -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';