aboutsummaryrefslogtreecommitdiff
path: root/engines/gob/sound/adlib.cpp
diff options
context:
space:
mode:
authorMax Horn2009-09-30 16:16:53 +0000
committerMax Horn2009-09-30 16:16:53 +0000
commit8ba75fc522f16844524dd4d6f88c3851e2402969 (patch)
treedf25c20389e3e706d508f37914dedc73c6479f00 /engines/gob/sound/adlib.cpp
parent25dde91c7c6c7da52636e3daa34bd9eee5d9dcb9 (diff)
downloadscummvm-rg350-8ba75fc522f16844524dd4d6f88c3851e2402969.tar.gz
scummvm-rg350-8ba75fc522f16844524dd4d6f88c3851e2402969.tar.bz2
scummvm-rg350-8ba75fc522f16844524dd4d6f88c3851e2402969.zip
Fix code formatting (esp. 'if(' -> 'if (' etc., but also indention and other things)
svn-id: r44495
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 170ed5ccf4..03bc87fb88 100644
--- a/engines/gob/sound/adlib.cpp
+++ b/engines/gob/sound/adlib.cpp
@@ -610,7 +610,7 @@ void MDYPlayer::interpret() {
do {
instr = *_playPos;
// printf("instr 0x%X\n", instr);
- switch(instr) {
+ switch (instr) {
case 0xF8:
_wait = *(_playPos++);
break;
@@ -640,7 +640,7 @@ void MDYPlayer::interpret() {
}
channel = (int)(instr & 0x0f);
- switch(instr & 0xf0) {
+ switch (instr & 0xf0) {
case 0x90:
note = *(_playPos++);
volume = *(_playPos++);