From 086a47cd76517ff4411419945197e545dcbd2cf1 Mon Sep 17 00:00:00 2001 From: bnnm Date: Sat, 29 Apr 2017 02:20:24 +0200 Subject: [PATCH] Add compiler flag VGM_DISABLE_VORBIS (as Vorbis is enabled by default) --- src/vgmstream.h | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/src/vgmstream.h b/src/vgmstream.h index 5c586b64..c1a5180c 100644 --- a/src/vgmstream.h +++ b/src/vgmstream.h @@ -13,9 +13,10 @@ enum { PATH_LIMIT = 32768 }; * done by external libraries. * If someone wants to do a standalone build, they can do it by simply * removing these defines (and the references to the libraries in the Makefile) */ +#ifndef VGM_DISABLE_VORBIS #define VGM_USE_VORBIS +#endif -/* can be disabled to decode with FFmpeg instead */ #ifndef VGM_DISABLE_MPEG #define VGM_USE_MPEG #endif