Added FMOD library support (needs work)

removed extra initializer
fmod.c int to int32_t
fmod support now functional
Added snd_lib check in windmain
fmod_ambience func for future implementation
updated some funcs
(CAN'T BUILD) -- static'd vars
This commit is contained in:
MrEveryDay98
2023-01-22 19:10:55 -05:00
committed by nhmall
parent 499a3654e5
commit 6164357ed9
2 changed files with 102 additions and 2 deletions

View File

@@ -592,8 +592,9 @@ _CrtSetReportFile(_CRT_ASSERT, _CRTDBG_FILE_STDERR);*/
windowtype = gc.chosen_windowtype;
}
choose_windows(windowtype);
#if defined(SND_LIB_WINDSOUND)
#if defined(SND_LIB_FMOD)
assign_soundlib(soundlib_fmod);
#elif defined(SND_LIB_WINDSOUND)
assign_soundlib(soundlib_windsound);
#endif