aboutsummaryrefslogtreecommitdiff
path: root/engines/gob/sound/adlib.cpp
diff options
context:
space:
mode:
Diffstat (limited to 'engines/gob/sound/adlib.cpp')
-rw-r--r--engines/gob/sound/adlib.cpp4
1 files changed, 2 insertions, 2 deletions
diff --git a/engines/gob/sound/adlib.cpp b/engines/gob/sound/adlib.cpp
index 0138a9dda8..45e6e0e5fa 100644
--- a/engines/gob/sound/adlib.cpp
+++ b/engines/gob/sound/adlib.cpp
@@ -614,7 +614,7 @@ void MDYPlayer::interpret() {
}
do {
instr = *_playPos;
- debugC(6, kDebugSound,"MDYPlayer::interpret instr 0x%X", instr);
+ debugC(6, kDebugSound, "MDYPlayer::interpret instr 0x%X", instr);
switch (instr) {
case 0xF8:
_wait = *(_playPos++);
@@ -627,7 +627,7 @@ void MDYPlayer::interpret() {
_playPos++;
ctrlByte1 = *(_playPos++);
ctrlByte2 = *(_playPos++);
- debugC(6, kDebugSound,"MDYPlayer::interpret ctrlBytes 0x%X 0x%X", ctrlByte1, ctrlByte2);
+ debugC(6, kDebugSound, "MDYPlayer::interpret ctrlBytes 0x%X 0x%X", ctrlByte1, ctrlByte2);
if (ctrlByte1 != 0x7F || ctrlByte2 != 0) {
_playPos -= 2;
while (*(_playPos++) != 0xF7)