aboutsummaryrefslogtreecommitdiff
path: root/scumm/player_v2.h
diff options
context:
space:
mode:
Diffstat (limited to 'scumm/player_v2.h')
-rw-r--r--scumm/player_v2.h3
1 files changed, 2 insertions, 1 deletions
diff --git a/scumm/player_v2.h b/scumm/player_v2.h
index 7680754c82..1bdfa96382 100644
--- a/scumm/player_v2.h
+++ b/scumm/player_v2.h
@@ -24,6 +24,7 @@
#define PLAYER_V2_H
#include "common/scummsys.h"
+#include "common/system.h"
#if !defined(__GNUC__)
#pragma START_PACK_STRUCTS
@@ -116,7 +117,7 @@ private:
byte *next_data;
byte *retaddr;
- void *_mutex;
+ OSystem::MutexRef _mutex;
void mutex_up() { _system->lock_mutex (_mutex); }
void mutex_down() { _system->unlock_mutex (_mutex); }