diff options
author | Max Horn | 2002-05-05 20:01:54 +0000 |
---|---|---|
committer | Max Horn | 2002-05-05 20:01:54 +0000 |
commit | 816fe7116872ca65603aaf49340e55c89410507b (patch) | |
tree | 5e0871a2cb99955dd580cec93997b07034134ab2 | |
parent | 5468565bd2014b62edd36db3dc8b29c8bd519c64 (diff) | |
download | scummvm-rg350-816fe7116872ca65603aaf49340e55c89410507b.tar.gz scummvm-rg350-816fe7116872ca65603aaf49340e55c89410507b.tar.bz2 scummvm-rg350-816fe7116872ca65603aaf49340e55c89410507b.zip |
added 'SPK ' music type, appears in Mac version of Monkey 2
svn-id: r4214
-rw-r--r-- | resource.cpp | 6 |
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) { |