aboutsummaryrefslogtreecommitdiff
path: root/engines/scumm/player_v2a.cpp
diff options
context:
space:
mode:
Diffstat (limited to 'engines/scumm/player_v2a.cpp')
-rw-r--r--engines/scumm/player_v2a.cpp4
1 files changed, 2 insertions, 2 deletions
diff --git a/engines/scumm/player_v2a.cpp b/engines/scumm/player_v2a.cpp
index 23eeebf70b..e1f36464bb 100644
--- a/engines/scumm/player_v2a.cpp
+++ b/engines/scumm/player_v2a.cpp
@@ -1303,7 +1303,7 @@ static V2A_Sound *findSound (unsigned long crc) {
return NULL;
}
-Player_V2A::Player_V2A(ScummEngine *scumm) {
+Player_V2A::Player_V2A(ScummEngine *scumm, Audio::Mixer *mixer) {
int i;
_vm = scumm;
@@ -1317,7 +1317,7 @@ Player_V2A::Player_V2A(ScummEngine *scumm) {
_slot[i].sound = NULL;
}
- _mod = new Player_MOD(scumm);
+ _mod = new Player_MOD(mixer);
_mod->setUpdateProc(update_proc, this, 60);
}