diff options
author | Cameron Cawley | 2019-11-30 13:38:06 +0000 |
---|---|---|
committer | Filippos Karapetis | 2019-11-30 17:47:34 +0200 |
commit | 2048c9cc7810948f6dc913dd44e606efcab9bb2b (patch) | |
tree | 8eb1165ed1f3a1234c1f1f4f9f1b44e9828130b2 /backends/platform/ds | |
parent | 25f6c7882504a03b50ed755d14947685f58d8691 (diff) | |
download | scummvm-rg350-2048c9cc7810948f6dc913dd44e606efcab9bb2b.tar.gz scummvm-rg350-2048c9cc7810948f6dc913dd44e606efcab9bb2b.tar.bz2 scummvm-rg350-2048c9cc7810948f6dc913dd44e606efcab9bb2b.zip |
AUDIO: Remove unused parameter from the MixerImpl constructor
Diffstat (limited to 'backends/platform/ds')
-rw-r--r-- | backends/platform/ds/arm9/source/osystem_ds.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/backends/platform/ds/arm9/source/osystem_ds.cpp b/backends/platform/ds/arm9/source/osystem_ds.cpp index c9a1f08758..a387f0a694 100644 --- a/backends/platform/ds/arm9/source/osystem_ds.cpp +++ b/backends/platform/ds/arm9/source/osystem_ds.cpp @@ -130,7 +130,7 @@ void OSystem_DS::initBackend() { DS::startSound(11025, 4096); } - _mixer = new Audio::MixerImpl(this, DS::getSoundFrequency()); + _mixer = new Audio::MixerImpl(DS::getSoundFrequency()); _mixer->setReady(true); /* TODO/FIXME: The NDS should use a custom AudioCD manager instance! |