diff --git a/Engine/source/sfx/fmod/sfxFMODDevice.cpp b/Engine/source/sfx/fmod/sfxFMODDevice.cpp index aeb42709b..7875abf67 100644 --- a/Engine/source/sfx/fmod/sfxFMODDevice.cpp +++ b/Engine/source/sfx/fmod/sfxFMODDevice.cpp @@ -33,7 +33,6 @@ bool SFXFMODDevice::smPrefDisableSoftware = false; bool SFXFMODDevice::smPrefUseSoftwareOcclusion = true; bool SFXFMODDevice::smPrefUseSoftwareHRTF = true; -bool SFXFMODDevice::smPrefUseSoftwareReverbLowmem = false; bool SFXFMODDevice::smPrefEnableProfile = false; bool SFXFMODDevice::smPrefGeometryUseClosest = false; const char* SFXFMODDevice::smPrefDSoundHRTF = "full"; @@ -248,8 +247,6 @@ bool SFXFMODDevice::_init() flags |= FMOD_INIT_OCCLUSION_LOWPASS; if( smPrefUseSoftwareHRTF ) flags |= FMOD_INIT_HRTF_LOWPASS; - if( smPrefUseSoftwareReverbLowmem ) - flags |= FMOD_INIT_SOFTWARE_REVERB_LOWMEM; if( smPrefEnableProfile ) flags |= FMOD_INIT_ENABLE_PROFILE; if( smPrefGeometryUseClosest ) diff --git a/Engine/source/sfx/fmod/sfxFMODDevice.h b/Engine/source/sfx/fmod/sfxFMODDevice.h index 929851a9f..df90eae0d 100644 --- a/Engine/source/sfx/fmod/sfxFMODDevice.h +++ b/Engine/source/sfx/fmod/sfxFMODDevice.h @@ -294,9 +294,6 @@ class SFXFMODDevice : public SFXDevice /// static bool smPrefUseSoftwareHRTF; - /// - static bool smPrefUseSoftwareReverbLowmem; - /// static bool smPrefEnableProfile; diff --git a/Engine/source/sfx/fmod/sfxFMODProvider.cpp b/Engine/source/sfx/fmod/sfxFMODProvider.cpp index 5ce41bb9f..f11996c97 100644 --- a/Engine/source/sfx/fmod/sfxFMODProvider.cpp +++ b/Engine/source/sfx/fmod/sfxFMODProvider.cpp @@ -60,10 +60,6 @@ public: "This will add a lowpass filter effect to the DSP effect chain of all sounds mixed in software.\n\n" "@note Only applies when using an %FMOD sound device.\n\n" "@ingroup SFXFMOD" ); - Con::addVariable( "$pref::SFX::FMOD::useSoftwareReverbLowmem", TypeBool, &SFXFMODDevice::smPrefUseSoftwareReverbLowmem, - "If true, %FMOD's SFX reverb is run using 22/24kHz delay buffers, halving the memory required.\n\n" - "@note Only applies when using an %FMOD sound device.\n\n" - "@ingroup SFXFMOD" ); Con::addVariable( "$pref::SFX::FMOD::enableProfile", TypeBool, &SFXFMODDevice::smPrefEnableProfile, "Whether to enable support for %FMOD's profiler.\n\n" "@note Only applies when using an %FMOD sound device.\n\n"