aboutsummaryrefslogtreecommitdiff
path: root/backends/platform/psp
diff options
context:
space:
mode:
authorMax Horn2008-06-28 15:28:29 +0000
committerMax Horn2008-06-28 15:28:29 +0000
commitc45d632f3b8c2d8c8aa46b05db758898de863e97 (patch)
tree7b8fee1589eb6a733aea389b305752ee7d63562b /backends/platform/psp
parente68efca5a19fd738a78a61ea21efd19280521f31 (diff)
downloadscummvm-rg350-c45d632f3b8c2d8c8aa46b05db758898de863e97.tar.gz
scummvm-rg350-c45d632f3b8c2d8c8aa46b05db758898de863e97.tar.bz2
scummvm-rg350-c45d632f3b8c2d8c8aa46b05db758898de863e97.zip
Patch ##1956946 (Audio::Mixer internal API revision) with some tweaks
svn-id: r32828
Diffstat (limited to 'backends/platform/psp')
-rw-r--r--backends/platform/psp/osys_psp.cpp4
1 files changed, 2 insertions, 2 deletions
diff --git a/backends/platform/psp/osys_psp.cpp b/backends/platform/psp/osys_psp.cpp
index aff5373510..2d18b4bfd6 100644
--- a/backends/platform/psp/osys_psp.cpp
+++ b/backends/platform/psp/osys_psp.cpp
@@ -34,7 +34,7 @@
#include "backends/timer/default/default-timer.h"
#include "graphics/surface.h"
#include "graphics/scaler.h"
-#include "sound/mixer.h"
+#include "sound/mixer_intern.h"
#include <pspgu.h>
@@ -99,7 +99,7 @@ OSystem_PSP::~OSystem_PSP() {
void OSystem_PSP::initBackend() {
_savefile = new DefaultSaveFileManager();
- _mixer = new Audio::Mixer();
+ _mixer = new Audio::MixerImpl(this);
_timer = new DefaultTimerManager();
setSoundCallback(Audio::Mixer::mixCallback, _mixer);
setTimerCallback(&timer_handler, 10);