From 7bd741a6446a678660c4d310c546bbc3fa6ea8cc Mon Sep 17 00:00:00 2001 From: Randy Heit Date: Sun, 4 Apr 2010 17:48:26 +0000 Subject: [PATCH] - Fixed compiling with FMOD Ex 4.30.00. I get no 3D sound effects, and it's crashing on me, too. Am I doing something wrong? SVN r2271 (trunk) --- src/sound/fmodsound.cpp | 3 +++ 1 file changed, 3 insertions(+) diff --git a/src/sound/fmodsound.cpp b/src/sound/fmodsound.cpp index 671b73d216..e167d389f8 100644 --- a/src/sound/fmodsound.cpp +++ b/src/sound/fmodsound.cpp @@ -167,7 +167,10 @@ static const FEnumList OutputNames[] = { "SDL", 666 }, // Mac +#if FMOD_VERSION < 0x43000 + // Sound Manager support was removed sometime in the 4.29 line. { "Sound Manager", FMOD_OUTPUTTYPE_SOUNDMANAGER }, +#endif { "Core Audio", FMOD_OUTPUTTYPE_COREAUDIO }, { NULL, 0 }