diff options
author | Vitaly Novichkov <admin@wohlnet.ru> | 2018-07-11 03:20:02 +0300 |
---|---|---|
committer | Vitaly Novichkov <admin@wohlnet.ru> | 2018-07-11 03:20:02 +0300 |
commit | 35aacd58e6a4617c6032f940d32a25b10ecd2374 (patch) | |
tree | 72796ad8d73c76cab7f32ac9fe2f9a730d9d9649 /src | |
parent | 1b6e182e0de8a6b7a45297741ac5e7ffb9bbb2ca (diff) | |
download | libADLMIDI-35aacd58e6a4617c6032f940d32a25b10ecd2374.tar.gz libADLMIDI-35aacd58e6a4617c6032f940d32a25b10ecd2374.tar.bz2 libADLMIDI-35aacd58e6a4617c6032f940d32a25b10ecd2374.zip |
Sequencer: Minor fix of comments
Diffstat (limited to 'src')
-rw-r--r-- | src/midi_sequencer.hpp | 2 | ||||
-rw-r--r-- | src/midi_sequencer_impl.hpp | 1 |
2 files changed, 1 insertions, 2 deletions
diff --git a/src/midi_sequencer.hpp b/src/midi_sequencer.hpp index b49c536..2009892 100644 --- a/src/midi_sequencer.hpp +++ b/src/midi_sequencer.hpp @@ -688,7 +688,7 @@ private: bool parseCMF(FileAndMemReader &fr); /** - * @brief Load file as GMF (ScummVM) + * @brief Load file as GMD/MUS files (ScummVM) * @param fr Context with opened file * @return true on successful load */ diff --git a/src/midi_sequencer_impl.hpp b/src/midi_sequencer_impl.hpp index b25fb36..0fe6192 100644 --- a/src/midi_sequencer_impl.hpp +++ b/src/midi_sequencer_impl.hpp @@ -2267,7 +2267,6 @@ bool BW_MidiSequencer::parseGMF(FileAndMemReader &fr) if(std::memcmp(headerBuf, "GMF\x1", 4) != 0) { m_errorString = fr.fileName() + ": Invalid format, GMF\\x1 signature is not found!\n"; - // GMD/MUS files (ScummVM) return false; } |