diff options
author | Torbjörn Andersson | 2006-03-12 12:55:16 +0000 |
---|---|---|
committer | Torbjörn Andersson | 2006-03-12 12:55:16 +0000 |
commit | c8347b23b1552328bf1c986e2c394acb81242738 (patch) | |
tree | 453c2dbe9d53e68d6983535f1c9c8b8c9e3c5db4 | |
parent | 84af3037874ea63b4b08ac3e6c7c88b0e7c85562 (diff) | |
download | scummvm-rg350-c8347b23b1552328bf1c986e2c394acb81242738.tar.gz scummvm-rg350-c8347b23b1552328bf1c986e2c394acb81242738.tar.bz2 scummvm-rg350-c8347b23b1552328bf1c986e2c394acb81242738.zip |
Added debug message for the standard "note on" opcodes as well.
svn-id: r21233
-rw-r--r-- | engines/kyra/sound_adlib.cpp | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/engines/kyra/sound_adlib.cpp b/engines/kyra/sound_adlib.cpp index 8788404ac4..6dcedc4b8a 100644 --- a/engines/kyra/sound_adlib.cpp +++ b/engines/kyra/sound_adlib.cpp @@ -707,6 +707,7 @@ void AdlibDriver::callbackProcess() { break; continue; } else { + debugC(9, kDebugLevelSound, "Note on opcode 0x%02X (duration: %d) (channel: %d)", command & 0xFF, (command >> 8) & 0xFF, _curTable); opcode = 0; setupNote(command & 0xFF, table); noteOn(table); |