diff options
| author | Paweł Kołodziejski | 2004-01-10 09:44:22 +0000 |
|---|---|---|
| committer | Paweł Kołodziejski | 2004-01-10 09:44:22 +0000 |
| commit | 158acbb70c49a7bdbf721c928e8b2ad353d2a52b (patch) | |
| tree | 9199d4a2451b58f4b4499d96ac7d44fdabd36759 | |
| parent | d2a7bf396d738e9141c88b6c59c38ee19e554020 (diff) | |
| download | scummvm-rg350-158acbb70c49a7bdbf721c928e8b2ad353d2a52b.tar.gz scummvm-rg350-158acbb70c49a7bdbf721c928e8b2ad353d2a52b.tar.bz2 scummvm-rg350-158acbb70c49a7bdbf721c928e8b2ad353d2a52b.zip | |
added one opcode
svn-id: r12292
| -rw-r--r-- | scumm/imuse_digi/dimuse.cpp | 5 |
1 files changed, 4 insertions, 1 deletions
diff --git a/scumm/imuse_digi/dimuse.cpp b/scumm/imuse_digi/dimuse.cpp index 2f0449f457..7c4fd3f436 100644 --- a/scumm/imuse_digi/dimuse.cpp +++ b/scumm/imuse_digi/dimuse.cpp @@ -450,7 +450,10 @@ void IMuseDigital::parseScriptCmds(int a, int b, int c, int d, int e, int f, int } break; case 25: // ImuseStartStream - debug(5, "ImuseStartStream (%d, %d, %d)", b, c, d); + debug(5, "ImuseStartStream (%d, %d, %d)", sample, c, d); + break; + case 26: // ImuseSwitchStream + debug(5, "ImuseSwitchStream (%d, %d, %d, %d, %d)", sample, c, d, e, f); break; case 0x1000: // ImuseSetState debug(5, "ImuseSetState (%d)", b); |
