From b6c8a48c25311b696f5a60948d78e381b8829a2c Mon Sep 17 00:00:00 2001 From: Bart van Strien Date: Sun, 26 May 2013 23:21:35 +0200 Subject: [PATCH] --disable-mpg123 needs the header conditionally included, too --- src/modules/sound/lullaby/Sound.cpp | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) diff --git a/src/modules/sound/lullaby/Sound.cpp b/src/modules/sound/lullaby/Sound.cpp index 992fb7a1d..db8131d75 100644 --- a/src/modules/sound/lullaby/Sound.cpp +++ b/src/modules/sound/lullaby/Sound.cpp @@ -23,11 +23,14 @@ #include "Sound.h" #include "ModPlugDecoder.h" -#include "Mpg123Decoder.h" #include "VorbisDecoder.h" #include "GmeDecoder.h" //#include "FLACDecoder.h" +#ifndef LOVE_NOMPG123 +# include "Mpg123Decoder.h" +#endif // LOVE_NOMPG123 + namespace love { namespace sound