Fix for SIMD not being initialized

This commit is contained in:
Alex
2023-03-14 06:23:57 +02:00
parent f54b46149d
commit 855384aead
3 changed files with 17 additions and 14 deletions

View File

@ -218,8 +218,11 @@ namespace CPU
SSESupport = true;
}
if (!Config.SIMD)
if (Config.SIMD == false)
{
debug("Disabling SSE support...");
SSESupport = false;
}
if (PGESupport)
{