diff options
author | Max Horn | 2003-12-13 21:06:47 +0000 |
---|---|---|
committer | Max Horn | 2003-12-13 21:06:47 +0000 |
commit | 80aac33327181ae281ea0d85bfec326583f3b55a (patch) | |
tree | 6b76ae58dd11841e1f0d5d85d93f1b5550262e58 | |
parent | 32d044d30219918eb7bb3c91a1b9910f9b2f86ed (diff) | |
download | scummvm-rg350-80aac33327181ae281ea0d85bfec326583f3b55a.tar.gz scummvm-rg350-80aac33327181ae281ea0d85bfec326583f3b55a.tar.bz2 scummvm-rg350-80aac33327181ae281ea0d85bfec326583f3b55a.zip |
cleanup
svn-id: r11620
-rw-r--r-- | scumm/imuse.cpp | 2 | ||||
-rw-r--r-- | scumm/imuse_player.cpp | 4 |
2 files changed, 3 insertions, 3 deletions
diff --git a/scumm/imuse.cpp b/scumm/imuse.cpp index 5aa49de322..706f937813 100644 --- a/scumm/imuse.cpp +++ b/scumm/imuse.cpp @@ -240,7 +240,7 @@ bool IMuseInternal::startSound(int sound) { // iMuse messiness while upgrading the iMuse engine, but it // is apparently necessary to deal with fade-and-restart // race conditions that were observed in MI2. Reference - // Bug #590511 and Patch #607175(which was reversed to fix + // Bug #590511 and Patch #607175 (which was reversed to fix // an FOA regression: Bug #622606). player = findActivePlayer(sound); if (!player) diff --git a/scumm/imuse_player.cpp b/scumm/imuse_player.cpp index 84c14e724e..248d598809 100644 --- a/scumm/imuse_player.cpp +++ b/scumm/imuse_player.cpp @@ -98,8 +98,8 @@ bool Player::startSound(int sound, MidiDriver *midi, bool passThrough) { // but we'll go ahead and do a similar check. ptr = _se->findStartOfSound(sound); if (!ptr) { - warning("Player::startSound(): Couldn't find start of sound %d!", sound); - return false; + warning("Player::startSound(): Couldn't find start of sound %d!", sound); + return false; } _isMT32 = _se->isMT32(sound); |