Browse Source

Fixed engine initialization of FMOD to work with the latest version

readme
Nico de Poel 4 years ago
parent
commit
b9333527c2
  1. 2
      engine/Quake/snd_fmod.c

2
engine/Quake/snd_fmod.c

@ -79,7 +79,7 @@ void S_Startup(void)
// Create FMOD System if it doesn't exist already // Create FMOD System if it doesn't exist already
if (!fmod_system) if (!fmod_system)
{ {
result = FMOD_System_Create(&fmod_system);
result = FMOD_System_Create(&fmod_system, FMOD_VERSION);
if (result != FMOD_OK) if (result != FMOD_OK)
{ {
Con_Printf("Failed to create FMOD System: %s\n", FMOD_ErrorString(result)); Con_Printf("Failed to create FMOD System: %s\n", FMOD_ErrorString(result));

Loading…
Cancel
Save