Skip to content

Commit 27ad7ff

Browse files
authored
Merge pull request #187 from N7Alpha/master
Fix undefined macro causing build to fail on some platforms
2 parents d772ec9 + 9f06165 commit 27ad7ff

1 file changed

Lines changed: 1 addition & 1 deletion

File tree

gfx/scaler/pixconv.c

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -29,7 +29,7 @@
2929

3030
#include <gfx/scaler/pixconv.h>
3131

32-
#if _MSC_VER && _MSC_VER <= 1800
32+
#if defined(_MSC_VER) && _MSC_VER <= 1800
3333
#define SCALER_NO_SIMD
3434
#endif
3535

0 commit comments

Comments
 (0)