summaryrefslogtreecommitdiff
path: root/indra/newview/fmodwrapper.cpp
diff options
context:
space:
mode:
Diffstat (limited to 'indra/newview/fmodwrapper.cpp')
-rw-r--r--indra/newview/fmodwrapper.cpp4
1 files changed, 2 insertions, 2 deletions
diff --git a/indra/newview/fmodwrapper.cpp b/indra/newview/fmodwrapper.cpp
index 16f1d19a78..e74c4a1d7c 100644
--- a/indra/newview/fmodwrapper.cpp
+++ b/indra/newview/fmodwrapper.cpp
@@ -26,12 +26,12 @@
extern "C"
{
- void FSOUND_Init(void);
+ void FMOD_System_Init(void);
}
void* fmodwrapper(void)
{
// When building the fmodwrapper library, the linker doesn't seem to want to bring in libfmod.a unless I explicitly
// reference at least one symbol in the library. This seemed like the simplest way.
- return (void*)&FSOUND_Init;
+ return (void*)&FMOD_System_Init;
}