aboutsummaryrefslogtreecommitdiff
path: root/graphics/video
diff options
context:
space:
mode:
authorTorbjörn Andersson2010-09-18 10:55:16 +0000
committerTorbjörn Andersson2010-09-18 10:55:16 +0000
commitc91a07229a8bd841e6b6e77d977254c388a2e407 (patch)
tree8eb84ab7f181f42447e14f76f4bb06889a2df246 /graphics/video
parent6fed6a75d53259f90b69ca951275e11d6c98042a (diff)
downloadscummvm-rg350-c91a07229a8bd841e6b6e77d977254c388a2e407.tar.gz
scummvm-rg350-c91a07229a8bd841e6b6e77d977254c388a2e407.tar.bz2
scummvm-rg350-c91a07229a8bd841e6b6e77d977254c388a2e407.zip
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
Diffstat (limited to 'graphics/video')
-rw-r--r--graphics/video/codecs/qdm2.cpp2
1 files changed, 1 insertions, 1 deletions
diff --git a/graphics/video/codecs/qdm2.cpp b/graphics/video/codecs/qdm2.cpp
index 9f151b4ba8..0050b256d1 100644
--- a/graphics/video/codecs/qdm2.cpp
+++ b/graphics/video/codecs/qdm2.cpp
@@ -1775,7 +1775,7 @@ QDM2Stream::QDM2Stream(Common::SeekableReadStream *stream, Common::SeekableReadS
tmp = extraData->readUint32BE();
debug(1, "QDM2Stream::QDM2Stream() extraType: %d", tmp);
if (tmp == MKID_BE('QDMC'))
- warning("QDM2Stream::QDM2Stream() QDMC stream type not supported.");
+ warning("QDM2Stream::QDM2Stream() QDMC stream type not supported");
else if (tmp != MKID_BE('QDM2'))
error("QDM2Stream::QDM2Stream() Unsupported stream type");