From 2740785df59ee3090e83924150f4e22f76229ffa Mon Sep 17 00:00:00 2001 From: pgert Date: Sat, 14 Jan 2023 23:06:56 +0000 Subject: [PATCH] UI: Correct Error-messages: "SSE4.1" not "SSE4" (#7890) --- pcsx2/VMManager.cpp | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/pcsx2/VMManager.cpp b/pcsx2/VMManager.cpp index 2d66b764f2..3aa9d4169b 100644 --- a/pcsx2/VMManager.cpp +++ b/pcsx2/VMManager.cpp @@ -156,8 +156,8 @@ bool VMManager::PerformEarlyHardwareChecks(const char** error) if (!temp_x86_caps.hasStreamingSIMD4Extensions) { - *error = "PCSX2 requires the Streaming SIMD 4 Extensions instruction set, which your CPU does not support.\n\n" - "SSE4 is now a minimum requirement for PCSX2. You should either upgrade your CPU, or use an older build such as 1.6.0.\n\n" COMMON_DOWNLOAD_MESSAGE; + *error = "PCSX2 requires the Streaming SIMD 4.1 Extensions instruction set, which your CPU does not support.\n\n" + "SSE4.1 is now a minimum requirement for PCSX2. You should either upgrade your CPU, or use an older build such as 1.6.0.\n\n" COMMON_DOWNLOAD_MESSAGE; return false; } @@ -165,7 +165,7 @@ bool VMManager::PerformEarlyHardwareChecks(const char** error) if (!temp_x86_caps.hasAVX || !temp_x86_caps.hasAVX2) { *error = "This build of PCSX2 requires the Advanced Vector Extensions 2 instruction set, which your CPU does not support.\n\n" - "You should download and run the SSE4 build of PCSX2 instead, or upgrade to a CPU that supports AVX2 to use this build.\n\n" COMMON_DOWNLOAD_MESSAGE; + "You should download and run the SSE4.1 build of PCSX2 instead, or upgrade to a CPU that supports AVX2 to use this build.\n\n" COMMON_DOWNLOAD_MESSAGE; return false; } #endif