Remove explicit locking from alMidiSoundfontvSOFT.

The MIDI backend can lock as it needs.
This commit is contained in:
Chris Robinson
2013-12-29 05:48:30 -08:00
parent 37d183efc0
commit 7640c658ee
-2
View File
@@ -51,9 +51,7 @@ AL_API void AL_APIENTRY alMidiSoundfontvSOFT(ALsizei count, const ALuint *ids)
alSetError(context, AL_INVALID_OPERATION);
else
{
ALCdevice_Lock(device);
err = V(synth,selectSoundfonts)(device, count, ids);
ALCdevice_Unlock(device);
if(err != AL_NO_ERROR)
alSetError(context, err);
}