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