diff --git a/VGMPlay.c b/VGMPlay.c index c3aa45c..3694304 100644 --- a/VGMPlay.c +++ b/VGMPlay.c @@ -51,7 +51,7 @@ #endif #endif -#include "zlib/zlib.h" +#include #include "chips/mamedef.h" diff --git a/VGMPlay_AddFmts.c b/VGMPlay_AddFmts.c index 1623803..d0c8749 100644 --- a/VGMPlay_AddFmts.c +++ b/VGMPlay_AddFmts.c @@ -10,7 +10,7 @@ #ifdef WIN32 #include #endif -#include "zlib/zlib.h" +#include #include "chips/mamedef.h" diff --git a/chips/sn764intf.c b/chips/sn764intf.c index 84ed62d..fca69e7 100644 --- a/chips/sn764intf.c +++ b/chips/sn764intf.c @@ -92,8 +92,8 @@ void device_stop_sn764xx(UINT8 ChipID) case EC_MAXIM: SN76489_Shutdown((SN76489_Context*)info->chip); break; - } #endif + } } void device_reset_sn764xx(UINT8 ChipID) diff --git a/makefile b/makefile index 7fdbc6e..a80e6e9 100644 --- a/makefile +++ b/makefile @@ -77,7 +77,7 @@ EMUOBJS = \ $(EMUOBJ)/ymz280b.o VGMPlay: $(OBJDIRS) $(MAINOBJS) $(EMUOBJS) - $(CC) -lpthread $(MAINOBJS) $(EMUOBJS) -lm -lrt -Wl,-lz -o VGMPlay + $(CC) $(MAINOBJS) $(EMUOBJS) -lpthread -lm -lrt -Wl,-lz -o VGMPlay # compile the main c-files $(OBJ)/%.o: $(SRC)/%.c