From b9333527c2f25eb83231daf5a8851ec8256ad9db Mon Sep 17 00:00:00 2001 From: Nico de Poel Date: Tue, 14 Sep 2021 12:43:14 +0200 Subject: [PATCH] Fixed engine initialization of FMOD to work with the latest version --- engine/Quake/snd_fmod.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/engine/Quake/snd_fmod.c b/engine/Quake/snd_fmod.c index b9775a5..ecd4a39 100644 --- a/engine/Quake/snd_fmod.c +++ b/engine/Quake/snd_fmod.c @@ -79,7 +79,7 @@ void S_Startup(void) // Create FMOD System if it doesn't exist already if (!fmod_system) { - result = FMOD_System_Create(&fmod_system); + result = FMOD_System_Create(&fmod_system, FMOD_VERSION); if (result != FMOD_OK) { Con_Printf("Failed to create FMOD System: %s\n", FMOD_ErrorString(result));