diff options
author | Willem Jan Palenstijn | 2009-02-21 11:26:54 +0000 |
---|---|---|
committer | Willem Jan Palenstijn | 2009-02-21 11:26:54 +0000 |
commit | baa7c7b997d68d434f78a917725368234871bdfc (patch) | |
tree | fdccd682714100585302edca04ac4aaccfc96a85 /engines/sci/sfx/player | |
parent | c39b5f5c6f2a692d60488c12c35f30ac55910d06 (diff) | |
download | scummvm-rg350-baa7c7b997d68d434f78a917725368234871bdfc.tar.gz scummvm-rg350-baa7c7b997d68d434f78a917725368234871bdfc.tar.bz2 scummvm-rg350-baa7c7b997d68d434f78a917725368234871bdfc.zip |
remove some endlines from warning() calls
svn-id: r38683
Diffstat (limited to 'engines/sci/sfx/player')
-rw-r--r-- | engines/sci/sfx/player/polled.cpp | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/engines/sci/sfx/player/polled.cpp b/engines/sci/sfx/player/polled.cpp index 9d307940cb..c514fa1caf 100644 --- a/engines/sci/sfx/player/polled.cpp +++ b/engines/sci/sfx/player/polled.cpp @@ -240,7 +240,7 @@ pp_add_iterator(song_iterator_t *it, GTimeVal start_time) { static int pp_fade_out(void) { - warning(__FILE__": Attempt to fade out- not implemented yet\n"); + warning(__FILE__": Attempt to fade out- not implemented yet"); return SFX_ERROR; } @@ -249,7 +249,7 @@ pp_stop(void) { song_iterator_t *it = play_it; play_it = NULL; - warning("[play] Now stopping it %p\n", (void *)it); + warning("[play] Now stopping it %p", (void *)it); if (it) songit_free(it); |