Skip to content

Commit

Permalink
core: change sse4 fatal error to sse4.1
Browse files Browse the repository at this point in the history
  • Loading branch information
GovanifY authored and lightningterror committed Apr 10, 2021
1 parent 8a9ec4c commit 12e9ddf
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions pcsx2/gui/AppInit.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -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

Expand Down

0 comments on commit 12e9ddf

Please sign in to comment.