summaryrefslogtreecommitdiff
path: root/indra/newview/fmodwrapper.cpp
diff options
context:
space:
mode:
authorcallum_linden <none@none>2013-02-01 08:44:52 -0800
committercallum_linden <none@none>2013-02-01 08:44:52 -0800
commitb0f2f02333a87598299b490a1e42eb42a8125f74 (patch)
tree8d1fe612b4ca516a3b8c97caa73efa1f9e836275 /indra/newview/fmodwrapper.cpp
parent9b86b8bf3d822bbeefb8518fb335e81a6dc7f3b3 (diff)
Removed (most) references to older FMOD library - still a little Linux clean up left
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;
}