aboutsummaryrefslogtreecommitdiff
path: root/engines/bbvs
diff options
context:
space:
mode:
authorEugene Sandulenko2015-12-31 21:22:41 +0100
committerEugene Sandulenko2015-12-31 21:22:41 +0100
commit507168fff4a5549c758a544c923f56b8afbd0796 (patch)
tree68a1a8a379647b75428027cdfc3d0bac2d4dc12e /engines/bbvs
parentd4e5b72d3163287f592e10379c8a3e0feaa8480e (diff)
downloadscummvm-rg350-507168fff4a5549c758a544c923f56b8afbd0796.tar.gz
scummvm-rg350-507168fff4a5549c758a544c923f56b8afbd0796.tar.bz2
scummvm-rg350-507168fff4a5549c758a544c923f56b8afbd0796.zip
BBVS: Hide noisy debug
Diffstat (limited to 'engines/bbvs')
-rw-r--r--engines/bbvs/graphics.cpp4
1 files changed, 2 insertions, 2 deletions
diff --git a/engines/bbvs/graphics.cpp b/engines/bbvs/graphics.cpp
index 43840607c8..e60bf0b8eb 100644
--- a/engines/bbvs/graphics.cpp
+++ b/engines/bbvs/graphics.cpp
@@ -66,7 +66,7 @@ void Screen::clear() {
void Screen::drawDrawList(DrawList &drawList, SpriteModule *spriteModule) {
for (uint i = 0; i < drawList.size(); ++i) {
- debug(1, "index: %d; x: %d; y: %d; priority: %d", drawList[i].index, drawList[i].x, drawList[i].y, drawList[i].priority);
+ debug(4, "index: %d; x: %d; y: %d; priority: %d", drawList[i].index, drawList[i].x, drawList[i].y, drawList[i].priority);
Sprite sprite = spriteModule->getSprite(drawList[i].index);
drawSprite(sprite, drawList[i].x, drawList[i].y);
}
@@ -105,7 +105,7 @@ void Screen::drawSprite(Sprite &sprite, int x, int y) {
if (destX + width >= _surface->w)
width = _surface->w - destX;
- debug(0, "drawSprite() (%d, %d, %d, %d); skipX: %d; skipY: %d; %d", destX, destY, width, height, skipX, skipY, sprite.type);
+ debug(6, "drawSprite() (%d, %d, %d, %d); skipX: %d; skipY: %d; %d", destX, destY, width, height, skipX, skipY, sprite.type);
if (sprite.type == 1) {
for (int yc = 0; yc < height; ++yc) {