diff options
-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); |