Installer: Minor fix

This commit is contained in:
Nodir Temirkhodjaev 2024-02-21 13:28:49 +03:00
parent a943164204
commit a5eff94edb

View File

@ -129,7 +129,7 @@ external 'IsProcessorFeaturePresent@kernel32.dll stdcall';
function IsSSE4Supported(): Boolean;
begin
Result := IsProcessorFeaturePresent(37); // PF_SSE4_1_INSTRUCTIONS_AVAILABLE
Result := IsProcessorFeaturePresent(38); // PF_SSE4_2_INSTRUCTIONS_AVAILABLE
end;
#endif