aboutsummaryrefslogtreecommitdiff
path: root/engines/gob/sound/adlib.cpp
diff options
context:
space:
mode:
authorMax Horn2009-09-08 22:03:07 +0000
committerMax Horn2009-09-08 22:03:07 +0000
commit37e51f1575992b82a3c73536eb4bba7f9e96ed53 (patch)
tree0f7903a56e22ad14c6304135edc09bfb90a7269e /engines/gob/sound/adlib.cpp
parentf1683ae5fef8358b374c1bfb316b25548538f8e0 (diff)
downloadscummvm-rg350-37e51f1575992b82a3c73536eb4bba7f9e96ed53.tar.gz
scummvm-rg350-37e51f1575992b82a3c73536eb4bba7f9e96ed53.tar.bz2
scummvm-rg350-37e51f1575992b82a3c73536eb4bba7f9e96ed53.zip
Fixed some (pedantic) warnings
svn-id: r44015
Diffstat (limited to 'engines/gob/sound/adlib.cpp')
-rw-r--r--engines/gob/sound/adlib.cpp3
1 files changed, 2 insertions, 1 deletions
diff --git a/engines/gob/sound/adlib.cpp b/engines/gob/sound/adlib.cpp
index 7ab8e1f8dd..170ed5ccf4 100644
--- a/engines/gob/sound/adlib.cpp
+++ b/engines/gob/sound/adlib.cpp
@@ -624,7 +624,8 @@ void MDYPlayer::interpret() {
ctrlByte2 = *(_playPos++);
if (ctrlByte1 != 0x7F || ctrlByte2 != 0) {
_playPos -= 2;
- while (*(_playPos++) != 0xF7);
+ while (*(_playPos++) != 0xF7)
+ ;
} else {
tempoMult = *(_playPos++);
tempoFrac = *(_playPos++);