[Scummvm-cvs-logs] scummvm master -> 507168fff4a5549c758a544c923f56b8afbd0796

sev- sev at scummvm.org
Thu Dec 31 21:23:41 CET 2015


This automated email contains information about 1 new commit which have been
pushed to the 'scummvm' repo located at https://github.com/scummvm/scummvm .

Summary:
507168fff4 BBVS: Hide noisy debug


Commit: 507168fff4a5549c758a544c923f56b8afbd0796
    https://github.com/scummvm/scummvm/commit/507168fff4a5549c758a544c923f56b8afbd0796
Author: Eugene Sandulenko (sev at scummvm.org)
Date: 2015-12-31T21:22:41+01:00

Commit Message:
BBVS: Hide noisy debug

Changed paths:
    engines/bbvs/graphics.cpp



diff --git a/engines/bbvs/graphics.cpp b/engines/bbvs/graphics.cpp
index 4384060..e60bf0b 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) {






More information about the Scummvm-git-logs mailing list