diff options
author | Martin Kiewitz | 2010-06-26 10:51:38 +0000 |
---|---|---|
committer | Martin Kiewitz | 2010-06-26 10:51:38 +0000 |
commit | 906b3221f58d71c0c73a9c60f9fd3feb7fcafaab (patch) | |
tree | ad109468c2aac68eb3ff839d4c67f38432800a9e /engines | |
parent | 16f854ba644aff930236d4f3ed5c8e6be35a970b (diff) | |
download | scummvm-rg350-906b3221f58d71c0c73a9c60f9fd3feb7fcafaab.tar.gz scummvm-rg350-906b3221f58d71c0c73a9c60f9fd3feb7fcafaab.tar.bz2 scummvm-rg350-906b3221f58d71c0c73a9c60f9fd3feb7fcafaab.zip |
SCI: removing fixme (issue got already solved)
svn-id: r50311
Diffstat (limited to 'engines')
-rw-r--r-- | engines/sci/sound/midiparser_sci.cpp | 6 |
1 files changed, 0 insertions, 6 deletions
diff --git a/engines/sci/sound/midiparser_sci.cpp b/engines/sci/sound/midiparser_sci.cpp index cb43f6c3a1..0bcafc8075 100644 --- a/engines/sci/sound/midiparser_sci.cpp +++ b/engines/sci/sound/midiparser_sci.cpp @@ -382,12 +382,6 @@ void MidiParser_SCI::allNotesOff() { int i, j; - // Note: we send to driver here directly, because in this case we would free previously mapped channels - // and onTimer() wouldn't send them to driver anymore afterwards anyway - - // FIXME: the common midiparser/driver code doesn't really like getting called from various threads - // but we don't have an option here... i guess midiparser/driver code should be made thread-safe - // Turn off all active notes for (i = 0; i < 128; ++i) { for (j = 0; j < 16; ++j) { |