By default FMOD will use the system default output device.
The best way to change the output device that FMOD uses is:
- Find out how many devices there are (
FMOD::System::getNumDrivers
). - For each driver get name (
FMOD::System::getDriverInfo
). - Use the name to determine the index of the wanted device.
- Set the new driver (
FMOD::System::setDriver
).