mirror of
https://github.com/libretro/RetroArch.git
synced 2024-11-24 08:30:16 +00:00
(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:
parent
48eeb15d2c
commit
0611868762
@ -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
|
||||||
|
Loading…
Reference in New Issue
Block a user