diff options
author | Matthew Hoops | 2010-06-22 19:39:30 +0000 |
---|---|---|
committer | Matthew Hoops | 2010-06-22 19:39:30 +0000 |
commit | 99807b88945082ac029710c4ab9be5322c04e0ea (patch) | |
tree | 25d3082c276ef0af2c5941daf1ec17a777c72f35 | |
parent | 33b991ee9d987acf013606341a60c8e3ff95ca77 (diff) | |
download | scummvm-rg350-99807b88945082ac029710c4ab9be5322c04e0ea.tar.gz scummvm-rg350-99807b88945082ac029710c4ab9be5322c04e0ea.tar.bz2 scummvm-rg350-99807b88945082ac029710c4ab9be5322c04e0ea.zip |
Fix uncompressed MIDI in T7G Mac.
svn-id: r50165
-rw-r--r-- | engines/groovie/music.cpp | 1 |
1 files changed, 0 insertions, 1 deletions
diff --git a/engines/groovie/music.cpp b/engines/groovie/music.cpp index 7e8f21bbbc..9b46af1483 100644 --- a/engines/groovie/music.cpp +++ b/engines/groovie/music.cpp @@ -712,7 +712,6 @@ bool MusicPlayerMac::load(uint32 fileref, bool loop) { file = _vm->_macResFork->getResource(MKID_BE('Midi'), fileref & 0x3FF); if (!file) error("Groovie::Music: Couldn't find resource 0x%04X", fileref); - return false; } return loadParser(file, loop); |