aboutsummaryrefslogtreecommitdiff
path: root/engines/tony
diff options
context:
space:
mode:
authorPaul Gilbert2012-05-19 20:29:53 +1000
committerPaul Gilbert2012-05-19 20:29:53 +1000
commitc402426117e83fa833fdadcc6ad81f418d195c7e (patch)
tree665b168d0732b3df5de4a320d9ef0f2dc6c25a15 /engines/tony
parentf3398ee0104622a7ab0598507894c9d74a7a30e2 (diff)
downloadscummvm-rg350-c402426117e83fa833fdadcc6ad81f418d195c7e.tar.gz
scummvm-rg350-c402426117e83fa833fdadcc6ad81f418d195c7e.tar.bz2
scummvm-rg350-c402426117e83fa833fdadcc6ad81f418d195c7e.zip
TONY: Converted some warning calls to debugC
Diffstat (limited to 'engines/tony')
-rw-r--r--engines/tony/mpal/mpal.cpp12
-rw-r--r--engines/tony/tony.h3
2 files changed, 8 insertions, 7 deletions
diff --git a/engines/tony/mpal/mpal.cpp b/engines/tony/mpal/mpal.cpp
index d74248911e..5cb6546343 100644
--- a/engines/tony/mpal/mpal.cpp
+++ b/engines/tony/mpal/mpal.cpp
@@ -645,7 +645,7 @@ void ScriptThread(CORO_PARAM, const void *param) {
_ctx->dwStartTime = _vm->GetTime();
_ctx->numHandles = 0;
-// warning("PlayScript(): Moments: %u\n",s->nMoments);
+// debugC(DEBUG_BASIC, kTonyDebugMPAL, "PlayScript(): Moments: %u\n",s->nMoments);
for (_ctx->i = 0; _ctx->i < s->nMoments; _ctx->i++) {
// Dorme il tempo necessario per arrivare al momento successivo
if (s->Moment[_ctx->i].dwTime == -1) {
@@ -654,7 +654,7 @@ void ScriptThread(CORO_PARAM, const void *param) {
} else {
_ctx->dwCurTime = _vm->GetTime();
if (_ctx->dwCurTime < _ctx->dwStartTime + (s->Moment[_ctx->i].dwTime * 100)) {
- // warning("PlayScript(): Sleeping %lums\n",_ctx->dwStartTime+(s->Moment[_ctx->i].dwTime*100)-_ctx->dwCurTime);
+ // debugC(DEBUG_BASIC, kTonyDebugMPAL, "PlayScript(): Sleeping %lums\n",_ctx->dwStartTime+(s->Moment[_ctx->i].dwTime*100)-_ctx->dwCurTime);
CORO_INVOKE_1(CoroScheduler.sleep, _ctx->dwStartTime+(s->Moment[_ctx->i].dwTime * 100) - _ctx->dwCurTime);
}
}
@@ -2199,7 +2199,7 @@ void OutputStartMsgComment(uint16 wNum, Common::OutSaveFile *f) {
for (i = 0; MsgComments[i].wStart != 0; i++)
if (MsgComments[i].wStart == wNum) {
- warning("Start: %d\n", wNum);
+ debugC(DEBUG_BASIC, kTonyDebugMPAL, "Start: %d\n", wNum);
f->writeString("</TABLE>\n<P>\n<P>\n");
@@ -2217,7 +2217,7 @@ void OutputEndMsgComment(uint16 wNum, Common::OutSaveFile *f) {
for (i = 0; MsgComments[i].wEnd != 0; i++)
if (MsgComments[i].wEnd == wNum) {
-warning("End: %d\n", wNum);
+ debugC(DEBUG_BASIC, kTonyDebugMPAL, "End: %d\n", wNum);
if (strcmp(MsgComments[i].pComment, "###") != 0 && strncmp(MsgComments[i].pComment, "@@@", 3) != 0) {
f->writeString("</TABLE>\n<P>\n");
@@ -2276,7 +2276,7 @@ void mpalDumpMessages(void) {
bDontOutput = false;
- warning("Dumping MESSAGES.HTM...\n");
+ debugC(DEBUG_BASIC, kTonyDebugMPAL, "Dumping MESSAGES.HTM...\n");
f = g_system->getSavefileManager()->openForSaving("Messages.htm");
f->writeString("<HTML>\n<BODY>\n<TABLE WIDTH = 100%% BORDER = 1>\n");
@@ -2369,7 +2369,7 @@ void mpalDumpOthers(void) {
bDontOutput = false;
- warning("Dumping OTHERS.HTM...\n");
+ debugC(DEBUG_BASIC, kTonyDebugMPAL, "Dumping OTHERS.HTM...\n");
f->writeString("<HTML>\n<BODY>\n");
diff --git a/engines/tony/tony.h b/engines/tony/tony.h
index 18d4a37067..32332a871d 100644
--- a/engines/tony/tony.h
+++ b/engines/tony/tony.h
@@ -58,7 +58,8 @@ enum {
kTonyDebugAnimations = 1 << 0,
kTonyDebugActions = 1 << 1,
kTonyDebugSound = 1 << 2,
- kTonyDebugMusic = 2 << 3
+ kTonyDebugMusic = 1 << 3,
+ kTonyDebugMPAL = 1 << 4
};
#define DEBUG_BASIC 1