mirror of https://github.com/PCSX2/pcsx2.git
core: change sse4 fatal error to sse4.1
This commit is contained in:
parent
8a9ec4c706
commit
12e9ddfa2b
|
@ -51,8 +51,8 @@ void Pcsx2App::DetectCpuAndUserMode()
|
||||||
// This code will probably never run if the binary was correctly compiled for SSE4
|
// 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
|
// SSE4 is required for any decent speed and is supported by more than decade old x86 CPUs
|
||||||
throw Exception::HardwareDeficiency()
|
throw Exception::HardwareDeficiency()
|
||||||
.SetDiagMsg(L"Critical Failure: SSE4 Extensions not available.")
|
.SetDiagMsg(L"Critical Failure: SSE4.1 Extensions not available.")
|
||||||
.SetUserMsg(_("SSE4 extensions are not available. PCSX2 requires a cpu that supports the SSE4 instruction set."));
|
.SetUserMsg(_("SSE4 extensions are not available. PCSX2 requires a cpu that supports the SSE4.1 instruction set."));
|
||||||
}
|
}
|
||||||
#endif
|
#endif
|
||||||
|
|
||||||
|
|
Loading…
Reference in New Issue