AUDIO: Remove unused parameter from the MixerImpl constructor

This commit is contained in:
Cameron Cawley 2019-11-30 13:38:06 +00:00 committed by Filippos Karapetis
parent 25f6c78825
commit 2048c9cc78
18 changed files with 21 additions and 23 deletions

View file

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