diff options
author | Max Horn | 2003-07-05 15:19:11 +0000 |
---|---|---|
committer | Max Horn | 2003-07-05 15:19:11 +0000 |
commit | d098334fe651616afa8b5314bcf580ae835185b2 (patch) | |
tree | 5442e167b6a58dea66f8482a1afcae264dfbbc1a /simon | |
parent | 4611b12c0a84ec528f9f020dc85bf4e9a0108c82 (diff) | |
download | scummvm-rg350-d098334fe651616afa8b5314bcf580ae835185b2.tar.gz scummvm-rg350-d098334fe651616afa8b5314bcf580ae835185b2.tar.bz2 scummvm-rg350-d098334fe651616afa8b5314bcf580ae835185b2.zip |
updated code to use type MutexRef; added class StackLock (from sdl backend, now in util.*)
svn-id: r8777
Diffstat (limited to 'simon')
-rw-r--r-- | simon/midi.h | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/simon/midi.h b/simon/midi.h index 95637f2c91..fb6d9f3e4f 100644 --- a/simon/midi.h +++ b/simon/midi.h @@ -48,7 +48,7 @@ struct MusicInfo { class MidiPlayer : public MidiDriver { protected: OSystem *_system; - void *_mutex; + OSystem::MutexRef _mutex; MidiDriver *_driver; MusicInfo _music; |