diff options
author | Travis Howell | 2006-09-21 01:36:58 +0000 |
---|---|---|
committer | Travis Howell | 2006-09-21 01:36:58 +0000 |
commit | 9d7e5f6f85cd5a73d7db79cb98a0a11650cd74ef (patch) | |
tree | f83a8e8b273e5deb59e75d179000957f13903eb0 | |
parent | d3b39c221bc55bff3425343f1c1f026ff77e09b7 (diff) | |
download | scummvm-rg350-9d7e5f6f85cd5a73d7db79cb98a0a11650cd74ef.tar.gz scummvm-rg350-9d7e5f6f85cd5a73d7db79cb98a0a11650cd74ef.tar.bz2 scummvm-rg350-9d7e5f6f85cd5a73d7db79cb98a0a11650cd74ef.zip |
Remove excess newlines for errors/warnings
svn-id: r23959
-rw-r--r-- | engines/simon/midiparser_s1d.cpp | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/engines/simon/midiparser_s1d.cpp b/engines/simon/midiparser_s1d.cpp index 1193f8578e..7df057a104 100644 --- a/engines/simon/midiparser_s1d.cpp +++ b/engines/simon/midiparser_s1d.cpp @@ -115,7 +115,7 @@ void MidiParser_S1D::parseNextEvent(EventInfo &info) { // OTherwise fall through to default. default: - warning("MidiParser_S1D: Unexpected byte 0x%02X found!\n", (int) info.command()); + warning("MidiParser_S1D: Unexpected byte 0x%02X found", (int) info.command()); break; } } @@ -125,7 +125,7 @@ bool MidiParser_S1D::loadMusic(byte *data, uint32 size) { byte *pos = data; if (*(pos++) != 0xFC) - error("Expected 0xFC header but found 0x%02X instead\n", (int) *pos); + error("Expected 0xFC header but found 0x%02X instead", (int) *pos); // The next 3 bytes MIGHT be tempo, but we skip them and use the default. // setTempo (*(pos++) | (*(pos++) << 8) | (*(pos++) << 16)); |