diff options
Diffstat (limited to 'scumm/imuse.cpp')
-rw-r--r-- | scumm/imuse.cpp | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/scumm/imuse.cpp b/scumm/imuse.cpp index 1326f5a333..2a7b171bfa 100644 --- a/scumm/imuse.cpp +++ b/scumm/imuse.cpp @@ -86,8 +86,9 @@ byte *IMuseInternal::findStartOfSound(int sound) { } // Check for old-style headers first, like 'RO' - if (ptr[4] == 'R' && ptr[5] == 'O') + if (ptr[4] == 'R' && ptr[5] == 'O'&& ptr[6] != 'L') { return ptr + 4; + } ptr += 8; size = READ_BE_UINT32(ptr); |