aboutsummaryrefslogtreecommitdiff
path: root/simon/debug.cpp
diff options
context:
space:
mode:
authorMax Horn2003-07-13 16:22:17 +0000
committerMax Horn2003-07-13 16:22:17 +0000
commit963ecad36275f338fffb1619a0e8535016352d61 (patch)
treec7eea83ae283decd62e2fcfb5ecd1fa3dca6c1dd /simon/debug.cpp
parent0642d2df98ed3b6c0251acf95b58674b1713bb9f (diff)
downloadscummvm-rg350-963ecad36275f338fffb1619a0e8535016352d61.tar.gz
scummvm-rg350-963ecad36275f338fffb1619a0e8535016352d61.tar.bz2
scummvm-rg350-963ecad36275f338fffb1619a0e8535016352d61.zip
debug/warning/error all automatically output a newline
svn-id: r8991
Diffstat (limited to 'simon/debug.cpp')
-rw-r--r--simon/debug.cpp2
1 files changed, 1 insertions, 1 deletions
diff --git a/simon/debug.cpp b/simon/debug.cpp
index 84f0cb69aa..0077b9f7ed 100644
--- a/simon/debug.cpp
+++ b/simon/debug.cpp
@@ -47,7 +47,7 @@ byte *SimonEngine::dumpOpcode(byte *p) {
st = s = simon1dos_opcode_name_table[opcode];
}
if (s == NULL) {
- error("INVALID OPCODE %d\n", opcode);
+ error("INVALID OPCODE %d", opcode);
return NULL;
}
while (*st != '|')