mirror of
https://github.com/Mauler125/r5sdk.git
synced 2025-02-09 19:15:03 +01:00
Perform CPU check as early as possible
Check CPU as early as possible (first routine during init). This is required because SpdLog compiles down to SSE instructions.
This commit is contained in:
parent
729475c74c
commit
e0504d2828
@ -17,6 +17,8 @@
|
||||
|
||||
void SDK_Init()
|
||||
{
|
||||
CheckCPU(); // Check CPU as early as possible, SpdLog also uses SIMD intrinsics.
|
||||
|
||||
if (strstr(GetCommandLineA(), "-launcher"))
|
||||
{
|
||||
g_svCmdLine = GetCommandLineA();
|
||||
|
@ -416,9 +416,13 @@ void QuerySystemInfo()
|
||||
spdlog::error("Unable to retrieve system memory information: {:s}\n",
|
||||
std::system_category().message(static_cast<int>(::GetLastError())));
|
||||
}
|
||||
}
|
||||
|
||||
void CheckCPU() // Respawn's engine utilizes POPCNT, SSE3 and SSSE3 (Supplemental SSE 3 Instructions), which is checked in r5apex.exe after we have initialized. We only use up to SSE2.
|
||||
{
|
||||
if (!s_bMathlibInitialized)
|
||||
{
|
||||
const CPUInformation& pi = GetCPUInformation();
|
||||
if (!(pi.m_bSSE && pi.m_bSSE2))
|
||||
{
|
||||
if (MessageBoxA(NULL, "SSE and SSE2 are required.", "Unsupported CPU", MB_ICONERROR | MB_OK))
|
||||
|
@ -14,6 +14,7 @@ void Systems_Shutdown();
|
||||
void WinSock_Init();
|
||||
void WinSock_Shutdown();
|
||||
void QuerySystemInfo();
|
||||
void CheckCPU();
|
||||
|
||||
void DetourInit();
|
||||
void DetourAddress();
|
||||
|
Loading…
x
Reference in New Issue
Block a user