aboutsummaryrefslogtreecommitdiff
path: root/scumm/player_v2.cpp
diff options
context:
space:
mode:
Diffstat (limited to 'scumm/player_v2.cpp')
-rw-r--r--scumm/player_v2.cpp4
1 files changed, 2 insertions, 2 deletions
diff --git a/scumm/player_v2.cpp b/scumm/player_v2.cpp
index 53d9b88cee..4099a33383 100644
--- a/scumm/player_v2.cpp
+++ b/scumm/player_v2.cpp
@@ -349,7 +349,7 @@ Player_V2::Player_V2(ScummEngine *scumm, bool pcjr) {
_system = scumm->_system;
_mixer = scumm->_mixer;
_sample_rate = _system->getOutputSampleRate();
- _mutex = _system->create_mutex();
+ _mutex = _system->createMutex();
_header_len = (scumm->_features & GF_OLD_BUNDLE) ? 4 : 6;
@@ -384,7 +384,7 @@ Player_V2::~Player_V2() {
// Detach the premix callback handler
_mixer->setupPremix(0, 0);
mutex_down();
- _system->delete_mutex (_mutex);
+ _system->deleteMutex (_mutex);
}
void Player_V2::set_pcjr(bool pcjr) {