aboutsummaryrefslogtreecommitdiff
path: root/engines/sci/sound/iterator/core.cpp
diff options
context:
space:
mode:
authorWillem Jan Palenstijn2010-01-30 11:59:05 +0000
committerWillem Jan Palenstijn2010-01-30 11:59:05 +0000
commit06bd17ee712f06971273d526f389f9a352f3e8ec (patch)
tree6396a8c4bdc706116532c555bd936c048a0b65c1 /engines/sci/sound/iterator/core.cpp
parent9449585893e72156579707f0f377527c6253be5f (diff)
downloadscummvm-rg350-06bd17ee712f06971273d526f389f9a352f3e8ec.tar.gz
scummvm-rg350-06bd17ee712f06971273d526f389f9a352f3e8ec.tar.bz2
scummvm-rg350-06bd17ee712f06971273d526f389f9a352f3e8ec.zip
SCI: Remove extra '\n's in debugC messages
svn-id: r47707
Diffstat (limited to 'engines/sci/sound/iterator/core.cpp')
-rw-r--r--engines/sci/sound/iterator/core.cpp6
1 files changed, 3 insertions, 3 deletions
diff --git a/engines/sci/sound/iterator/core.cpp b/engines/sci/sound/iterator/core.cpp
index daa92b70c5..c7c9ace028 100644
--- a/engines/sci/sound/iterator/core.cpp
+++ b/engines/sci/sound/iterator/core.cpp
@@ -559,7 +559,7 @@ void SfxState::updateMultiSong() {
if (!newsong) {
// Iterators should get freed when there's only one song left playing
if(oldfirst && oldfirst->_status == SOUND_STATUS_STOPPED) {
- debugC(2, kDebugLevelSound, "[SFX] Stopping song %lx\n", oldfirst->_handle);
+ debugC(2, kDebugLevelSound, "[SFX] Stopping song %lx", oldfirst->_handle);
if (_player && oldfirst->_it)
_player->iterator_message(SongIterator::Message(oldfirst->_it->ID, SIMSG_STOP));
}
@@ -602,7 +602,7 @@ void SfxState::updateMultiSong() {
oldseeker = oldseeker->_nextStopping)
if (oldseeker->_nextPlaying == &not_playing_anymore) {
setSongStatus(oldseeker, SOUND_STATUS_SUSPENDED);
- debugC(2, kDebugLevelSound, "[SFX] Stopping song %lx\n", oldseeker->_handle);
+ debugC(2, kDebugLevelSound, "[SFX] Stopping song %lx", oldseeker->_handle);
if (_player && oldseeker->_it)
_player->iterator_message(SongIterator::Message(oldseeker->_it->ID, SIMSG_STOP));
@@ -611,7 +611,7 @@ void SfxState::updateMultiSong() {
for (newseeker = newsong; newseeker; newseeker = newseeker->_nextPlaying) {
if (newseeker->_status != SOUND_STATUS_PLAYING && _player) {
- debugC(2, kDebugLevelSound, "[SFX] Adding song %lx\n", newseeker->_it->ID);
+ debugC(2, kDebugLevelSound, "[SFX] Adding song %lx", newseeker->_it->ID);
SongIterator *clonesong = newseeker->_it->clone(newseeker->_delay);
_player->add_iterator(clonesong, g_system->getMillis());