From dafef46a1b708032e968894bd48137be9ff7d086 Mon Sep 17 00:00:00 2001 From: Tyler Wilding Date: Sun, 22 May 2022 13:18:37 -0400 Subject: [PATCH] ci: add SSE4 support for tagged Qt builds --- pcsx2-qt/AutoUpdaterDialog.cpp | 2 ++ 1 file changed, 2 insertions(+) diff --git a/pcsx2-qt/AutoUpdaterDialog.cpp b/pcsx2-qt/AutoUpdaterDialog.cpp index bc877bcdc6..2f326e26ad 100644 --- a/pcsx2-qt/AutoUpdaterDialog.cpp +++ b/pcsx2-qt/AutoUpdaterDialog.cpp @@ -54,6 +54,8 @@ #define UPDATE_PLATFORM_STR "Windows" #if _M_SSE >= 0x500 #define UPDATE_ADDITIONAL_TAGS "AVX2" +#else +#define UPDATE_ADDITIONAL_TAGS "SSE4" #endif #endif