AUDIO/BACKENDS: Store output audio buffer size in Mixer

This commit is contained in:
Andrea Boscarino 2021-12-04 00:08:29 +01:00 committed by Paweł Kołodziejski
parent e3ff9b5f9e
commit f37489dd80
9 changed files with 25 additions and 11 deletions

View file

@ -464,7 +464,7 @@ void OSystem_Android::initBackend() {
gettimeofday(&_startTime, 0);
_mixer = new Audio::MixerImpl(_audio_sample_rate);
_mixer = new Audio::MixerImpl(_audio_sample_rate, _audio_buffer_size);
_mixer->setReady(true);
_timer_thread_exit = false;