aboutsummaryrefslogtreecommitdiff
path: root/simon/midi.h
diff options
context:
space:
mode:
authorMax Horn2005-01-10 22:06:49 +0000
committerMax Horn2005-01-10 22:06:49 +0000
commitcffd917165a14e981d61342458a9d054d3c14705 (patch)
tree3aa6658993fa842477a7ab10b2a21dbf7625a531 /simon/midi.h
parente79458130835528ddf693fba868243cbbfb4ee9a (diff)
downloadscummvm-rg350-cffd917165a14e981d61342458a9d054d3c14705.tar.gz
scummvm-rg350-cffd917165a14e981d61342458a9d054d3c14705.tar.bz2
scummvm-rg350-cffd917165a14e981d61342458a9d054d3c14705.zip
system.h was being included in tons of places, without any good reason; reduced this (total dependencies on system.h went down from 193 to 85 files)
svn-id: r16527
Diffstat (limited to 'simon/midi.h')
-rw-r--r--simon/midi.h3
1 files changed, 2 insertions, 1 deletions
diff --git a/simon/midi.h b/simon/midi.h
index d7075bc58d..ac53cbc021 100644
--- a/simon/midi.h
+++ b/simon/midi.h
@@ -24,6 +24,7 @@
#include "sound/mididrv.h"
#include "sound/midiparser.h"
+#include "common/mutex.h"
class File;
class OSystem;
@@ -52,7 +53,7 @@ struct MusicInfo {
class MidiPlayer : public MidiDriver {
protected:
OSystem *_system;
- OSystem::MutexRef _mutex;
+ Common::MutexRef _mutex;
MidiDriver *_driver;
bool _map_mt32_to_gm;
bool _passThrough;