Skip to content

Commit 494dc93

Browse files
committed
Fix SSE for more platforms some more
1 parent f44d7e9 commit 494dc93

1 file changed

Lines changed: 1 addition & 1 deletion

File tree

includes/kore3/simd/uint32x4.h

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -63,7 +63,7 @@ static inline kore_uint32x4 kore_uint32x4_sub(kore_uint32x4 a, kore_uint32x4 b)
6363
}
6464

6565
static inline kore_uint32x4 kore_uint32x4_mul(kore_uint32x4 a, kore_uint32x4 b) {
66-
#if defined(KORE_SSE4_1) && !defined(KORE_SONY)
66+
#if defined(KORE_SSE4_1) && !defined(KORE_CONSOLE)
6767
return _mm_mullo_epi32(a, b);
6868
#else
6969
// via https://fgiesen.wordpress.com/2016/04/03/sse-mind-the-gap

0 commit comments

Comments
 (0)