aboutsummaryrefslogtreecommitdiff
path: root/scumm/charset.cpp
diff options
context:
space:
mode:
Diffstat (limited to 'scumm/charset.cpp')
-rw-r--r--scumm/charset.cpp4
1 files changed, 2 insertions, 2 deletions
diff --git a/scumm/charset.cpp b/scumm/charset.cpp
index 0c76eb799a..40ee479ef2 100644
--- a/scumm/charset.cpp
+++ b/scumm/charset.cpp
@@ -55,7 +55,7 @@ void CharsetRendererCommon::setCurID(byte id) {
_fontPtr = _vm->getResourceAddress(rtCharset, id);
if (_fontPtr == 0)
- error("CharsetRendererCommon::setCurID: charset %d not found!\n", id);
+ error("CharsetRendererCommon::setCurID: charset %d not found!", id);
if (_vm->_version == 4)
_fontPtr += 17;
@@ -70,7 +70,7 @@ void CharsetRendererV3::setCurID(byte id) {
_fontPtr = _vm->getResourceAddress(rtCharset, id);
if (_fontPtr == 0)
- error("CharsetRendererCommon::setCurID: charset %d not found!\n", id);
+ error("CharsetRendererCommon::setCurID: charset %d not found!", id);
_nbChars = _fontPtr[4];
_fontPtr += 6;