BACKENDS: Move implementation of getMixer() out of ModularBackend

This commit is contained in:
Cameron Cawley 2020-08-01 22:51:35 +01:00 committed by Eugene Sandulenko
parent b76652120b
commit 6c22f92301
3 changed files with 16 additions and 21 deletions

View file

@ -40,6 +40,7 @@ class MutexManager;
* OSystem::getMillis()
* OSystem::delayMillis()
* OSystem::getTimeAndDate()
* OSystem::getMixer()
* OSystem::quit()
*
* And, it should also initialize all the managers variables
@ -125,13 +126,6 @@ public:
//@}
/** @name Sound */
//@{
virtual Audio::Mixer *getMixer() override;
//@}
/** @name Miscellaneous */
//@{
@ -146,7 +140,6 @@ protected:
MutexManager *_mutexManager;
GraphicsManager *_graphicsManager;
Audio::Mixer *_mixer;
//@}
};