Go back to SSE4.2 on Windows as minimum requirement instead of AVX2 for better user coverage by default

#3732
This commit is contained in:
Wojtek Figat
2025-10-22 16:14:05 +02:00
parent 2629511224
commit d1774cac28

View File

@@ -20,7 +20,7 @@ namespace Flax.Build
/// Specifies the minimum CPU architecture type to support (on x86/x64).
/// </summary>
[CommandLine("winCpuArch", "<arch>", "Specifies the minimum CPU architecture type to support (om x86/x64).")]
public static CpuArchitecture WindowsCpuArch = CpuArchitecture.AVX2; // 94.48% support on PC according to Steam Hardware & Software Survey: May 2025 (https://store.steampowered.com/hwsurvey/)
public static CpuArchitecture WindowsCpuArch = CpuArchitecture.SSE4_2; // 99.78% support on PC according to Steam Hardware & Software Survey: September 2025 (https://store.steampowered.com/hwsurvey/)
}
}