diff options
Diffstat (limited to 'sound/midiparser_xmidi.cpp')
-rw-r--r-- | sound/midiparser_xmidi.cpp | 22 |
1 files changed, 6 insertions, 16 deletions
diff --git a/sound/midiparser_xmidi.cpp b/sound/midiparser_xmidi.cpp index 176b1aacc0..8b4a194aa0 100644 --- a/sound/midiparser_xmidi.cpp +++ b/sound/midiparser_xmidi.cpp @@ -25,12 +25,12 @@ #include "common/util.h" -////////////////////////////////////////////////// -// -// The XMIDI version of MidiParser -// -////////////////////////////////////////////////// - +/** + * The XMIDI version of MidiParser. + * + * Much of this code is adapted from the XMIDI implementation from the exult + * project. + */ class MidiParser_XMIDI : public MidiParser { protected: NoteTimer _notes_cache[32]; @@ -49,16 +49,6 @@ public: }; - -////////////////////////////////////////////////// -// -// MidiParser_XMIDI implementation -// -// Much of this code is adapted from the XMIDI -// implementation from the exult project. -// -////////////////////////////////////////////////// - // This is a special XMIDI variable length quantity uint32 MidiParser_XMIDI::readVLQ2 (byte * &pos) { uint32 value = 0; |