aboutsummaryrefslogtreecommitdiff
path: root/simon/midi.h
diff options
context:
space:
mode:
authorMax Horn2005-01-28 22:05:51 +0000
committerMax Horn2005-01-28 22:05:51 +0000
commitabd12dd1b63d9e680bdc157fd5aa1fdb579e111e (patch)
treeda026a16edefcc56119ef2376eb0b26f7ec9d500 /simon/midi.h
parentc62d82450b7fc4d64bf6102cb8074457e3d0cb47 (diff)
downloadscummvm-rg350-abd12dd1b63d9e680bdc157fd5aa1fdb579e111e.tar.gz
scummvm-rg350-abd12dd1b63d9e680bdc157fd5aa1fdb579e111e.tar.bz2
scummvm-rg350-abd12dd1b63d9e680bdc157fd5aa1fdb579e111e.zip
Use class Mutex instead of MutexRef
svn-id: r16679
Diffstat (limited to 'simon/midi.h')
-rw-r--r--simon/midi.h4
1 files changed, 1 insertions, 3 deletions
diff --git a/simon/midi.h b/simon/midi.h
index ac53cbc021..828782690e 100644
--- a/simon/midi.h
+++ b/simon/midi.h
@@ -27,7 +27,6 @@
#include "common/mutex.h"
class File;
-class OSystem;
namespace Simon {
@@ -52,8 +51,7 @@ struct MusicInfo {
class MidiPlayer : public MidiDriver {
protected:
- OSystem *_system;
- Common::MutexRef _mutex;
+ Common::Mutex _mutex;
MidiDriver *_driver;
bool _map_mt32_to_gm;
bool _passThrough;