bufferQueue's Clear method doesn't take any parameters

This commit is contained in:
Chris Robinson 2014-01-19 17:26:51 -08:00
parent f193b539ce
commit 49baa9128d

View File

@ -428,7 +428,7 @@ static void opensl_stop_playback(ALCdevice *Device)
PRINTERR(result, "bufferQueue->GetInterface");
if(SL_RESULT_SUCCESS == result)
{
result = VCALL(bufferQueue,Clear)(bufferQueue);
result = VCALL0(bufferQueue,Clear)();
PRINTERR(result, "bufferQueue->Clear");
}