aboutsummaryrefslogtreecommitdiff
path: root/engines/tinsel/music.h
diff options
context:
space:
mode:
authorMax Horn2011-03-23 11:46:11 +0100
committerMax Horn2011-03-23 15:25:46 +0100
commit99dbecf3b4a14382fa867610a43201fc150bfda9 (patch)
tree75cd643775ba6bb93ba223f3fc135a28b2d0309a /engines/tinsel/music.h
parent756f592b61c0c1ca98b78c30a9be46b5560f0c69 (diff)
downloadscummvm-rg350-99dbecf3b4a14382fa867610a43201fc150bfda9.tar.gz
scummvm-rg350-99dbecf3b4a14382fa867610a43201fc150bfda9.tar.bz2
scummvm-rg350-99dbecf3b4a14382fa867610a43201fc150bfda9.zip
TINSEL: Make MidiMusicPlayer::_parser and _mutex protected
Diffstat (limited to 'engines/tinsel/music.h')
-rw-r--r--engines/tinsel/music.h6
1 files changed, 3 insertions, 3 deletions
diff --git a/engines/tinsel/music.h b/engines/tinsel/music.h
index 5545200c59..8f5acc51d0 100644
--- a/engines/tinsel/music.h
+++ b/engines/tinsel/music.h
@@ -97,13 +97,13 @@ public:
MidiChannel *allocateChannel() { return 0; }
MidiChannel *getPercussionChannel() { return 0; }
- MidiParser *_parser;
- Common::Mutex _mutex;
-
protected:
static void onTimer(void *data);
+ MidiParser *_parser;
+ Common::Mutex _mutex;
+
MidiChannel *_channel[16];
MidiDriver *_driver;
MidiParser *_xmidiParser;