diff options
author | Torbjörn Andersson | 2006-11-01 17:46:00 +0000 |
---|---|---|
committer | Torbjörn Andersson | 2006-11-01 17:46:00 +0000 |
commit | 69fa6abb37a6f405147902cbbbb73404040b7a3a (patch) | |
tree | c744ea4fa7dbd1aa4b8b9d63b04a1a9f7cabb163 | |
parent | 79b9397f3e161ce6b9c06e38f18758b34ede379e (diff) | |
download | scummvm-rg350-69fa6abb37a6f405147902cbbbb73404040b7a3a.tar.gz scummvm-rg350-69fa6abb37a6f405147902cbbbb73404040b7a3a.tar.bz2 scummvm-rg350-69fa6abb37a6f405147902cbbbb73404040b7a3a.zip |
Removed unnecessary newline from warning message. (But why did I get this
message in the first place?)
svn-id: r24581
-rw-r--r-- | engines/scumm/scumm.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/engines/scumm/scumm.cpp b/engines/scumm/scumm.cpp index f88f54cc5b..38de7b602a 100644 --- a/engines/scumm/scumm.cpp +++ b/engines/scumm/scumm.cpp @@ -1440,7 +1440,7 @@ void ScummEngine::setupMusic(int midi) { /* Bind the mixer to the system => mixer will be invoked * automatically when samples need to be generated */ if (!_mixer->isReady()) { - warning("Sound mixer initialization failed\n"); + warning("Sound mixer initialization failed"); if (_musicType == MDT_ADLIB || _musicType == MDT_PCSPK) { midiDriver = MD_NULL; _musicType = MDT_NONE; |