diff options
author | Travis Howell | 2003-08-23 13:51:37 +0000 |
---|---|---|
committer | Travis Howell | 2003-08-23 13:51:37 +0000 |
commit | 5e0f61a8b258a4ab737fa9c34556716d69b82a0b (patch) | |
tree | 92e2d61a1aa0130caf818ca7ccd8c9d1a95a0ff9 | |
parent | c6b5749f03467a4962fb2890d1717adf6d1a3a4d (diff) | |
download | scummvm-rg350-5e0f61a8b258a4ab737fa9c34556716d69b82a0b.tar.gz scummvm-rg350-5e0f61a8b258a4ab737fa9c34556716d69b82a0b.tar.bz2 scummvm-rg350-5e0f61a8b258a4ab737fa9c34556716d69b82a0b.zip |
Typo
svn-id: r9827
-rw-r--r-- | scumm/imuse.cpp | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/scumm/imuse.cpp b/scumm/imuse.cpp index d42568b263..6395859b84 100644 --- a/scumm/imuse.cpp +++ b/scumm/imuse.cpp @@ -120,7 +120,7 @@ bool IMuseInternal::isMT32(int sound) { tag = *(((uint32 *)ptr) + 1); switch (tag) { case MKID('ADL '): - case MKDI('ASFX'): // Special AD class for old Adlib sound effects + case MKID('ASFX'): // Special AD class for old Adlib sound effects return false; case MKID('AMI '): return true; @@ -154,7 +154,7 @@ bool IMuseInternal::isGM(int sound) { tag = *(((uint32 *)ptr) + 1); switch (tag) { case MKID('ADL '): - case MKDI('ASFX'): // Special AD class for old Adlib sound effects + case MKID('ASFX'): // Special AD class for old Adlib sound effects return false; case MKID('AMI '): return true; // Yeah... for our purposes, this is GM |