diff options
Diffstat (limited to 'scumm/imuse.cpp')
-rw-r--r-- | scumm/imuse.cpp | 4 |
1 files changed, 4 insertions, 0 deletions
diff --git a/scumm/imuse.cpp b/scumm/imuse.cpp index 446d7531b2..504af874e1 100644 --- a/scumm/imuse.cpp +++ b/scumm/imuse.cpp @@ -131,6 +131,8 @@ bool IMuseInternal::isMT32(int sound) { switch (tag) { case MKID('ADL '): return false; + case MKID('AMI '): + return true; case MKID('ROL '): return true; case MKID('GMD '): @@ -158,6 +160,8 @@ bool IMuseInternal::isGM(int sound) { switch (tag) { case MKID('ADL '): return false; + case MKID('AMI '): + return true; // Yeah... for our purposes, this is GM case MKID('ROL '): return true; // Yeah... for our purposes, this is GM case MKID('GMD '): |