aboutsummaryrefslogtreecommitdiff
path: root/engines
diff options
context:
space:
mode:
authorTorbjörn Andersson2006-03-12 12:55:16 +0000
committerTorbjörn Andersson2006-03-12 12:55:16 +0000
commitc8347b23b1552328bf1c986e2c394acb81242738 (patch)
tree453c2dbe9d53e68d6983535f1c9c8b8c9e3c5db4 /engines
parent84af3037874ea63b4b08ac3e6c7c88b0e7c85562 (diff)
downloadscummvm-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
Diffstat (limited to 'engines')
-rw-r--r--engines/kyra/sound_adlib.cpp1
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);