From c91a07229a8bd841e6b6e77d977254c388a2e407 Mon Sep 17 00:00:00 2001 From: Torbjörn Andersson Date: Sat, 18 Sep 2010 10:55:16 +0000 Subject: JANITORIAL: Removed most punctuation at end of warning() and error() Our warning() and error() functions always add an exclamation mark to the end of the message anyway. svn-id: r52791 --- engines/parallaction/gui_ns.cpp | 2 +- engines/parallaction/parallaction.cpp | 2 +- engines/parallaction/sound_br.cpp | 4 ++-- 3 files changed, 4 insertions(+), 4 deletions(-) (limited to 'engines/parallaction') diff --git a/engines/parallaction/gui_ns.cpp b/engines/parallaction/gui_ns.cpp index 562c806958..9f50236360 100644 --- a/engines/parallaction/gui_ns.cpp +++ b/engines/parallaction/gui_ns.cpp @@ -586,7 +586,7 @@ public: if (_points[2] >= _points[0] && _points[2] >= _points[1]) { character = CHAR_DOUGH; } else { - error("If you read this, either your CPU or transivity is broken (we believe the former)."); + error("If you read this, either your CPU or transivity is broken (we believe the former)"); } _vm->cleanupGame(); diff --git a/engines/parallaction/parallaction.cpp b/engines/parallaction/parallaction.cpp index ce7525345a..2de7fe9d64 100644 --- a/engines/parallaction/parallaction.cpp +++ b/engines/parallaction/parallaction.cpp @@ -201,7 +201,7 @@ void Parallaction::allocateLocationSlot(const char *name) { } if (_di == 120) - error("No more location slots available. Please report this immediately to ScummVM team."); + error("No more location slots available. Please report this immediately to ScummVM team"); if (_currentLocationIndex == -1) { strcpy(_locationNames[_numLocations], name); diff --git a/engines/parallaction/sound_br.cpp b/engines/parallaction/sound_br.cpp index 407dd86ec3..f1def31f9f 100644 --- a/engines/parallaction/sound_br.cpp +++ b/engines/parallaction/sound_br.cpp @@ -130,7 +130,7 @@ void MidiParser_MSC::parseMidiEvent(EventInfo &info) { break; default: - warning("Unexpected midi event 0x%02X in midi data.", info.event); + warning("Unexpected midi event 0x%02X in midi data", info.event); } //if ((type == 0xB) && (info.basic.param1 == 64)) info.basic.param2 = 127; @@ -173,7 +173,7 @@ bool MidiParser_MSC::loadMusic(byte *data, uint32 size) { byte *pos = data; if (memcmp("MSCt", pos, 4)) { - warning("Expected header not found in music file."); + warning("Expected header not found in music file"); return false; } pos += 4; -- cgit v1.2.3