aboutsummaryrefslogtreecommitdiff
path: root/resource.cpp
diff options
context:
space:
mode:
Diffstat (limited to 'resource.cpp')
-rw-r--r--resource.cpp5
1 files changed, 4 insertions, 1 deletions
diff --git a/resource.cpp b/resource.cpp
index 3e04c0bb0e..5a214f282f 100644
--- a/resource.cpp
+++ b/resource.cpp
@@ -605,6 +605,9 @@ int Scumm::readSoundResource(int type, int idx)
pri = -1;
switch (tag) {
+ case MKID('SBL '):
+ pri = 15;
+ break;
case MKID('ADL '):
if (_use_adlib)
pri = 10;
@@ -702,7 +705,7 @@ int Scumm::readSoundResource(int type, int idx)
00 0F 00 40
Maybe I am mistaken when I think it's four byte, some other parts
- seem to suggest it's 2 byte oriented, or even variable lenght...
+ seem to suggest it's 2 byte oriented, or even variable length...
*/
fileSeek(_fileHandle, -12, SEEK_CUR);
total_size = fileReadDwordBE();