Hello,
I am trying to enable reverb on master channel but I get FMOD_ERR_DSP_CONNECTION when calling masterGroup->setReverbProperties(…);
My code is:
// Set reverb properties for first instance:
FMOD_REVERB_PROPERTIES props = FMOD_PRESET_ROOM;
FMOD_RESULT result = fmodSystem->setReverbProperties(0, &props);
// Get master channel group
FMOD::ChannelGroup* masterGroup = nullptr;
FMOD_RESULT result = fmodSystem->getMasterChannelGroup(&masterGroup);
// Apply reverb
result = masterGroup->setReverbProperties(0, 0.5f); // FMOD_ERR_DSP_CONNECTION
What’s wrong here?