Fix imageviewer

This commit is contained in:
twinaphex 2016-09-04 21:39:16 +02:00
parent fde7899acb
commit 6f386d56cd

View File

@ -10,7 +10,11 @@
#include <compat/strl.h>
#include <retro_environment.h>
#if defined(HAVE_STB_IMAGE) && (__STDC_VERSION__ >= 199901L)
#if defined(HAVE_RPNG) || defined(HAVE_RJPEG) || defined(HAVE_RTGA) || defined(HAVE_RBMP)
#define PREFER_NON_STB_IMAGE
#endif
#if defined(HAVE_STB_IMAGE) && !defined(PREFER_NON_STB_IMAGE)
#define STB_IMAGE_IMPLEMENTATION
#if 0