Browse Source

Merge pull request #1424 from rextimmy/fmod_crash_fix

Changed order of fmodex library unload.
Anis 9 years ago
parent
commit
f30aac3655
1 changed files with 1 additions and 1 deletions
  1. 1 1
      Engine/source/sfx/fmod/sfxFMODDevice.h

+ 1 - 1
Engine/source/sfx/fmod/sfxFMODDevice.h

@@ -105,8 +105,8 @@ struct FModFNTable
    }
    ~FModFNTable()
    {
-      eventDllRef = NULL;
       dllRef = NULL;
+      eventDllRef = NULL;      
       delete mutex;
    }