mirror of
https://github.com/moonlight-stream/moonlight-common-c.git
synced 2026-04-02 22:06:10 +00:00
Fix incorrectly enabling SSSE3 on all x64 Windows platforms
This commit is contained in:
@@ -4,7 +4,7 @@
|
|||||||
#if defined(__AVX2__)
|
#if defined(__AVX2__)
|
||||||
#define OBLAS_AVX2
|
#define OBLAS_AVX2
|
||||||
#else
|
#else
|
||||||
#if defined(__SSSE3__) || (defined(_MSC_VER) && defined(_M_X64) && !defined(_M_ARM64))
|
#if defined(__SSSE3__)
|
||||||
#define OBLAS_SSE3
|
#define OBLAS_SSE3
|
||||||
#endif
|
#endif
|
||||||
#endif
|
#endif
|
||||||
|
|||||||
Reference in New Issue
Block a user