From 9b9334a138ae0b113e0590145d3a7c982dd4629f Mon Sep 17 00:00:00 2001 From: Bill Meltsner Date: Thu, 1 Apr 2010 20:13:47 -0400 Subject: [PATCH] I'm not entirely sure why ModPlugDecoder.cpp was #including set.h, but it certainly doesn't need to be... --- src/modules/sound/lullaby/ModPlugDecoder.cpp | 13 ++++++------- 1 file changed, 6 insertions(+), 7 deletions(-) diff --git a/src/modules/sound/lullaby/ModPlugDecoder.cpp b/src/modules/sound/lullaby/ModPlugDecoder.cpp index f95c2516e..06ff1ceaa 100644 --- a/src/modules/sound/lullaby/ModPlugDecoder.cpp +++ b/src/modules/sound/lullaby/ModPlugDecoder.cpp @@ -20,7 +20,6 @@ #include "ModPlugDecoder.h" -#include #include namespace love @@ -59,12 +58,12 @@ namespace lullaby bool ModPlugDecoder::accepts(const std::string & ext) { - static const std::string supported[] = { - "699", "abc", "amf", "ams", "dbm", "dmf", - "dsm", "far", "it", "j2b", "mdl", "med", - "mid", "mod", "mt2", "mtm", "okt", "pat", - "psm", "s3m", "stm", "ult", "umx", "wav", - "xm", "" + static const std::string supported[] = { + "699", "abc", "amf", "ams", "dbm", "dmf", + "dsm", "far", "it", "j2b", "mdl", "med", + "mid", "mod", "mt2", "mtm", "okt", "pat", + "psm", "s3m", "stm", "ult", "umx", "wav", + "xm", "" }; for(int i = 0; !(supported[i].empty()); i++)