diff options
author | Torbjörn Andersson | 2006-04-14 07:06:54 +0000 |
---|---|---|
committer | Torbjörn Andersson | 2006-04-14 07:06:54 +0000 |
commit | d3a0f122a93d0296107da43dc9fce649ef0fe7cb (patch) | |
tree | fd34dfa67b02b9dd4e36ca4bc4a87042f7ecaab4 | |
parent | bd2adbee81ebff18b0b0003d35891f6e684f1229 (diff) | |
download | scummvm-rg350-d3a0f122a93d0296107da43dc9fce649ef0fe7cb.tar.gz scummvm-rg350-d3a0f122a93d0296107da43dc9fce649ef0fe7cb.tar.bz2 scummvm-rg350-d3a0f122a93d0296107da43dc9fce649ef0fe7cb.zip |
Adjusted debug message levels: loading a cutscene is more interesting than the
drawing of a scaled sprite.
svn-id: r21875
-rw-r--r-- | engines/simon/items.cpp | 2 | ||||
-rw-r--r-- | engines/simon/vga.cpp | 2 |
2 files changed, 2 insertions, 2 deletions
diff --git a/engines/simon/items.cpp b/engines/simon/items.cpp index 555d1d5638..a3ad35c85c 100644 --- a/engines/simon/items.cpp +++ b/engines/simon/items.cpp @@ -1910,7 +1910,7 @@ void SimonEngine::o3_mouseOff() { void SimonEngine::o3_loadSmack() { // 182: load video file - debug(1,"Load video file: %s", getStringPtrByID(getNextStringID())); + debug(0,"Load video file: %s", getStringPtrByID(getNextStringID())); } void SimonEngine::o3_playSmack() { diff --git a/engines/simon/vga.cpp b/engines/simon/vga.cpp index 896d77e4e2..364118360f 100644 --- a/engines/simon/vga.cpp +++ b/engines/simon/vga.cpp @@ -1374,7 +1374,7 @@ void SimonEngine::scaleClip(int16 h, int16 w, int16 y, int16 x, int16 scrollY) { _variableArray[22] = _feebleRect.bottom; _variableArray[23] = _feebleRect.right; - debug(1, "Left %d Right %d Top %d Bottom %d", dstRect.left, dstRect.right, dstRect.top, dstRect.bottom); + debug(5, "Left %d Right %d Top %d Bottom %d", dstRect.left, dstRect.right, dstRect.top, dstRect.bottom); // Unlike normal rectangles in ScummVM, it seems that in the case of // the destination rectangle the bottom and right coordinates are |