[Wii] fix compilation issue caused by libretro patch to libchdr

This commit is contained in:
EkeEke 2017-09-19 12:19:28 +02:00
parent 34eab9369f
commit 3a0ec7e895

View File

@ -43,6 +43,7 @@
#include <string.h>
#include "types.h"
#include "osd.h"
#include "macros.h"
#include "chd.h"
#include "cdrom.h"
#include "flac.h"
@ -51,9 +52,13 @@
#include "LzmaEnc.h"
#include "LzmaDec.h"
#undef TRUE
#undef FALSE
#define TRUE 1
#define FALSE 0
#undef MAX
#undef MIN
#define MAX(x, y) (((x) > (y)) ? (x) : (y))
#define MIN(x, y) (((x) < (y)) ? (x) : (y))