aboutsummaryrefslogtreecommitdiff
path: root/sky/logic.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 /sky/logic.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 'sky/logic.cpp')
-rw-r--r--sky/logic.cpp12
1 files changed, 6 insertions, 6 deletions
diff --git a/sky/logic.cpp b/sky/logic.cpp
index 1b3b939baf..33aa45f7d8 100644
--- a/sky/logic.cpp
+++ b/sky/logic.cpp
@@ -1171,7 +1171,7 @@ script:
/// low level interface to interpreter
uint16 moduleNo = (uint16)((scriptNo & 0xff00) >> 12);
- debug(3, "Doing Script %x\n", (offset << 16) | scriptNo);
+ debug(3, "Doing Script %x", (offset << 16) | scriptNo);
uint16 *scriptData = _moduleList[moduleNo]; // get module address
if (!scriptData) { // The module has not been loaded
@@ -1353,7 +1353,7 @@ bool SkyLogic::fnCacheFast(uint32 a, uint32 b, uint32 c) {
}
bool SkyLogic::fnDrawScreen(uint32 a, uint32 b, uint32 c) {
- debug(5, "Call: fnDrawScreen(%X, %X)\n",a,b);
+ debug(5, "Call: fnDrawScreen(%X, %X)",a,b);
SkyState::_systemVars.currentPalette = a;
_skyScreen->fnDrawScreen(a, b);
return true;
@@ -1959,11 +1959,11 @@ bool SkyLogic::fnResetId(uint32 id, uint32 resetBlock, uint32 c) {
uint16 *rst = (uint16 *)SkyState::fetchCompact(resetBlock);
if (!cpt) {
- warning("fnResetId(): Compact %d (id) == NULL\n",id);
+ warning("fnResetId(): Compact %d (id) == NULL",id);
return true;
}
if (!rst) {
- warning("fnResetId(): Compact %d (resetBlock) == NULL\n",resetBlock);
+ warning("fnResetId(): Compact %d (resetBlock) == NULL",resetBlock);
return true;
}
@@ -2263,7 +2263,7 @@ bool SkyLogic::fnNewSwingSeq(uint32 a, uint32 b, uint32 c) {
if ((a == 85) || (a == 106) || (a == 75) || (a == 15)) {
_skyScreen->startSequenceItem((uint16)a);
} else {
- debug(1,"SkyLogic::fnNewSwingSeq: ignored seq %d\n",a);
+ debug(1,"SkyLogic::fnNewSwingSeq: ignored seq %d",a);
}
return true;
}
@@ -2412,7 +2412,7 @@ bool SkyLogic::fnUnPauseFx(uint32 a, uint32 b, uint32 c) {
}
bool SkyLogic::fnPrintf(uint32 a, uint32 b, uint32 c) {
- printf("fnPrintf: %d\n", a);
+ printf("fnPrintf: %d", a);
return true;
}