mirror of
https://github.com/libretro/RetroArch
synced 2025-01-30 21:32:45 +00:00
Fix #3704
This commit is contained in:
parent
7bd38d93f0
commit
160444845d
@ -71,46 +71,30 @@ static const char* IMAGE_CORE_PREFIX(valid_extensions) = "jpg|jpeg|png|bmp|psd|t
|
|||||||
#else
|
#else
|
||||||
|
|
||||||
#ifdef HAVE_RJPEG
|
#ifdef HAVE_RJPEG
|
||||||
#define RJPEG_ARGS "jpg|jpeg"
|
#define RJPEG_ARGS "|jpg|jpeg"
|
||||||
|
|
||||||
#ifdef HAVE_RPNG
|
|
||||||
#define RJPEG_SEP "|"
|
|
||||||
#endif
|
|
||||||
|
|
||||||
#else
|
#else
|
||||||
#define RJPEG_ARGS
|
#define RJPEG_ARGS
|
||||||
#define RJPEG_SEP
|
|
||||||
#endif
|
#endif
|
||||||
|
|
||||||
#ifdef HAVE_RPNG
|
#ifdef HAVE_RPNG
|
||||||
#define RPNG_ARGS "png"
|
#define RPNG_ARGS "|png"
|
||||||
|
|
||||||
#ifdef HAVE_RBMP
|
|
||||||
#define RPNG_SEP "|"
|
|
||||||
#endif
|
|
||||||
#else
|
#else
|
||||||
#define RPNG_ARGS
|
#define RPNG_ARGS
|
||||||
#define RPNG_SEP
|
|
||||||
#endif
|
#endif
|
||||||
|
|
||||||
#ifdef HAVE_RBMP
|
#ifdef HAVE_RBMP
|
||||||
#define RBMP_ARGS "bmp"
|
#define RBMP_ARGS "|bmp"
|
||||||
|
|
||||||
#ifdef HAVE_RTGA
|
|
||||||
#define RBMP_SEP "|"
|
|
||||||
#endif
|
|
||||||
#else
|
#else
|
||||||
#define RBMP_ARGS
|
#define RBMP_ARGS
|
||||||
#define RBMP_SEP
|
|
||||||
#endif
|
#endif
|
||||||
|
|
||||||
#ifdef HAVE_RTGA
|
#ifdef HAVE_RTGA
|
||||||
#define RTGA_ARGS "tga"
|
#define RTGA_ARGS "|tga"
|
||||||
#else
|
#else
|
||||||
#define RTGA_ARGS
|
#define RTGA_ARGS
|
||||||
#endif
|
#endif
|
||||||
|
|
||||||
static const char* IMAGE_CORE_PREFIX(valid_extensions) = RJPEG_ARGS RJPEG_SEP RPNG_ARGS RPNG_SEP RBMP_ARGS RBMP_SEP RTGA_ARGS;
|
static const char* IMAGE_CORE_PREFIX(valid_extensions) = RJPEG_ARGS RPNG_ARGS RBMP_ARGS RTGA_ARGS + 1; /* +1 to remove the extra | */
|
||||||
#endif
|
#endif
|
||||||
|
|
||||||
void IMAGE_CORE_PREFIX(retro_get_system_info)(struct retro_system_info *info)
|
void IMAGE_CORE_PREFIX(retro_get_system_info)(struct retro_system_info *info)
|
||||||
|
Loading…
x
Reference in New Issue
Block a user