core: change sse4 fatal error to sse4.1

This commit is contained in:
Gauvain 'GovanifY' Roussel-Tarbouriech 2021-04-10 18:57:39 +02:00 committed by lightningterror
parent 8a9ec4c706
commit 12e9ddfa2b
1 changed files with 2 additions and 2 deletions

View File

@ -51,8 +51,8 @@ void Pcsx2App::DetectCpuAndUserMode()
// This code will probably never run if the binary was correctly compiled for SSE4
// SSE4 is required for any decent speed and is supported by more than decade old x86 CPUs
throw Exception::HardwareDeficiency()
.SetDiagMsg(L"Critical Failure: SSE4 Extensions not available.")
.SetUserMsg(_("SSE4 extensions are not available. PCSX2 requires a cpu that supports the SSE4 instruction set."));
.SetDiagMsg(L"Critical Failure: SSE4.1 Extensions not available.")
.SetUserMsg(_("SSE4 extensions are not available. PCSX2 requires a cpu that supports the SSE4.1 instruction set."));
}
#endif