aboutsummaryrefslogtreecommitdiff
path: root/engines/gob/sound
diff options
context:
space:
mode:
authorSven Hesse2010-02-03 03:25:50 +0000
committerSven Hesse2010-02-03 03:25:50 +0000
commitd4949d03d4e1b5dffd4c80c05b0a0ef34b70eda1 (patch)
tree219377c0c61896a6a9b488a43b588f6f89a92e9d /engines/gob/sound
parent887ca3145ebfce7c54d2cffeffb3d40de3fbe272 (diff)
downloadscummvm-rg350-d4949d03d4e1b5dffd4c80c05b0a0ef34b70eda1.tar.gz
scummvm-rg350-d4949d03d4e1b5dffd4c80c05b0a0ef34b70eda1.tar.bz2
scummvm-rg350-d4949d03d4e1b5dffd4c80c05b0a0ef34b70eda1.zip
Minor style-related changes
svn-id: r47839
Diffstat (limited to 'engines/gob/sound')
-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)