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/ps2 | |
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/ps2')
-rw-r--r-- | backends/platform/ps2/systemps2.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/backends/platform/ps2/systemps2.cpp b/backends/platform/ps2/systemps2.cpp index 2a8f2d65d0..a9fc71c90a 100644 --- a/backends/platform/ps2/systemps2.cpp +++ b/backends/platform/ps2/systemps2.cpp @@ -378,7 +378,7 @@ OSystem_PS2::OSystem_PS2(const char *elfPath) { void OSystem_PS2::init(void) { sioprintf("Timer...\n"); _timerManager = new DefaultTimerManager(); - _scummMixer = new Audio::MixerImpl(this, 48000); + _scummMixer = new Audio::MixerImpl(48000); _scummMixer->setReady(true); initTimer(); |