One more small fix to CoreAudioOut buffer notification code.

This commit is contained in:
Casey Langen 2016-07-12 16:30:45 -07:00
parent 31e28d2f53
commit 6f93f602db

View File

@ -79,7 +79,9 @@ void CoreAudioOut::NotifyBufferCompleted(BufferContext *context) {
this->buffers.erase(it);
found = true;
}
++it;
else {
++it;
}
}
}