Fix typo breaking compilation with SSE2.

Spotted by sybrenstuvel (Sybren Stüvel), thanks!
This commit is contained in:
Bastien Montagne 2014-11-02 22:59:33 +01:00
parent b7174c9320
commit c14d34322b
Notes: blender-bot 2023-02-14 11:35:46 +01:00
Referenced by issue #42166, Crash on exit (change in DPI size and/or using VBO)
1 changed files with 1 additions and 1 deletions

View File

@ -266,7 +266,7 @@ public:
else
#endif
#ifdef WITH_CYCLES_OPTIMIZED_KERNEL_SSE2
if(system_cpu_support_sse2()) {
if(system_cpu_support_sse2())
convert_to_half_float_kernel = kernel_cpu_sse2_convert_to_half_float;
else
#endif