aboutsummaryrefslogtreecommitdiff
path: root/engines/agos/string.cpp
diff options
context:
space:
mode:
Diffstat (limited to 'engines/agos/string.cpp')
-rw-r--r--engines/agos/string.cpp4
1 files changed, 2 insertions, 2 deletions
diff --git a/engines/agos/string.cpp b/engines/agos/string.cpp
index 4a88e3aad1..aa34d7a163 100644
--- a/engines/agos/string.cpp
+++ b/engines/agos/string.cpp
@@ -939,7 +939,7 @@ char *AGOSEngine_PN::unctok(char *c, int n) {
void AGOSEngine_PN::uncomstr(char *c, uint32 x) {
if (x > _textBaseSize)
- error("UNCOMSTR: TBASE over-run\n");
+ error("UNCOMSTR: TBASE over-run");
while (_textBase[x]) {
if (_textBase[x] < 244) {
c = unctok(c, _textBase[x]);
@@ -1070,7 +1070,7 @@ void AGOSEngine_PN::pobjd(int n, int m) {
void AGOSEngine_PN::ptext(uint32 tptr) {
if (tptr > _textBaseSize)
- error("ptext: attempt to print beyond end of TBASE\n");
+ error("ptext: attempt to print beyond end of TBASE");
while (_textBase[tptr]) {
if (_textBase[tptr] < 244) {