Merge pull request #1000 from Winterleaf/FMod-64bit-fix

FMod switching DLLS if 64 bit.
This commit is contained in:
Areloch 2015-02-20 00:42:05 -06:00
commit 3fe0fe1b92

View file

@ -169,7 +169,11 @@ void SFXFMODProvider::init()
const char* pDllName; // plugin-based DLL
const char* eventDllName;
#ifdef TORQUE_OS_WIN
#ifdef _WIN64
dllName = "fmodex64.dll";
pDllName = "fmodexp64.dll";
eventDllName = "fmod_event64.dll";
#elif defined(TORQUE_OS_WIN)
dllName = "fmodex.dll";
pDllName = "fmodexp.dll";
eventDllName = "fmod_event.dll";