diff options
author | Torbjörn Andersson | 2008-01-05 23:01:25 +0000 |
---|---|---|
committer | Torbjörn Andersson | 2008-01-05 23:01:25 +0000 |
commit | 063aecaf7a23bd862371c390fa80a07d2693c148 (patch) | |
tree | 38b5c5ec5d65441956c1e7527ac8cbdb1693e01e /engines | |
parent | 56ad5f493e5ead7915b687d1d25e73adee5ffbff (diff) | |
download | scummvm-rg350-063aecaf7a23bd862371c390fa80a07d2693c148.tar.gz scummvm-rg350-063aecaf7a23bd862371c390fa80a07d2693c148.tar.bz2 scummvm-rg350-063aecaf7a23bd862371c390fa80a07d2693c148.zip |
Fixed warning.
svn-id: r30269
Diffstat (limited to 'engines')
-rw-r--r-- | engines/agi/op_test.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/engines/agi/op_test.cpp b/engines/agi/op_test.cpp index 5ca7534eb0..7ba3e625bf 100644 --- a/engines/agi/op_test.cpp +++ b/engines/agi/op_test.cpp @@ -343,7 +343,7 @@ int AgiEngine::testIfCode(int lognum) { // (AGI 2.316) in logics 1, 3, 5, 6, 137 and 192 (Logic.192 revealed this command's nature). // TODO: Check this command's implementation using disassembly just to be sure. ec = game.viewTable[0].flags & ADJ_EGO_XY; - debugC(7, kDebugLevelScripts, "op_test: in.motion.using.mouse = %d (Amiga-specific testcase 19)", ec ? "true" : "false"); + debugC(7, kDebugLevelScripts, "op_test: in.motion.using.mouse = %s (Amiga-specific testcase 19)", ec ? "true" : "false"); break; default: ec = false; |