aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--resource.cpp6
1 files changed, 5 insertions, 1 deletions
diff --git a/resource.cpp b/resource.cpp
index ef9d241063..9cf7105718 100644
--- a/resource.cpp
+++ b/resource.cpp
@@ -567,7 +567,7 @@ int Scumm::readSoundResource(int type, int idx)
pos += size;
pri = -1;
-
+
switch (tag) {
case MKID('ADL '):
if (_use_adlib)
@@ -585,6 +585,10 @@ int Scumm::readSoundResource(int type, int idx)
if (!_use_adlib)
pri = 1;
break;
+ case MKID('SPK '):
+ if (!_use_adlib)
+ pri = 0;
+ break;
}
if (pri > best_pri) {