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/wii | |
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/wii')
-rw-r--r-- | backends/platform/wii/osystem_sfx.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/backends/platform/wii/osystem_sfx.cpp b/backends/platform/wii/osystem_sfx.cpp index 445bb2ef52..ea7dc9e398 100644 --- a/backends/platform/wii/osystem_sfx.cpp +++ b/backends/platform/wii/osystem_sfx.cpp @@ -71,7 +71,7 @@ static void * sfx_thread_func(void *arg) { } void OSystem_Wii::initSfx() { - _mixer = new Audio::MixerImpl(this, 48000); + _mixer = new Audio::MixerImpl(48000); sfx_thread_running = false; sfx_thread_quit = false; |