(libretro-common) pixconv.c - Add conditional to prevent SIMD from being compiled in for MSVC 2012 and earlier - won't work

This commit is contained in:
twinaphex 2019-06-20 02:24:28 +02:00
parent 48eeb15d2c
commit 0611868762

View File

@ -29,6 +29,10 @@
#include <gfx/scaler/pixconv.h> #include <gfx/scaler/pixconv.h>
#if _MSC_VER && _MSC_VER <= 1800
#define SCALER_NO_SIMD
#endif
#ifdef SCALER_NO_SIMD #ifdef SCALER_NO_SIMD
#undef __SSE2__ #undef __SSE2__
#endif #endif