aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorEugene Sandulenko2019-12-01 16:52:35 +0100
committerEugene Sandulenko2019-12-01 17:59:40 +0100
commit35933f3f3096f7a0bccdba2ef29288a2cd2730f8 (patch)
tree1600392deeceafff55ba0e5bc4ecbc071639322c
parent34e835a20ca648b0fd2e67cefc84511c1dab6217 (diff)
downloadscummvm-rg350-35933f3f3096f7a0bccdba2ef29288a2cd2730f8.tar.gz
scummvm-rg350-35933f3f3096f7a0bccdba2ef29288a2cd2730f8.tar.bz2
scummvm-rg350-35933f3f3096f7a0bccdba2ef29288a2cd2730f8.zip
DIRECTOR: Remove noisy warning
-rw-r--r--engines/director/frame.cpp1
1 files changed, 0 insertions, 1 deletions
diff --git a/engines/director/frame.cpp b/engines/director/frame.cpp
index c2597ec245..87f6b43e85 100644
--- a/engines/director/frame.cpp
+++ b/engines/director/frame.cpp
@@ -627,7 +627,6 @@ void Frame::renderSprites(Graphics::ManagedSurface &surface, bool renderTrail) {
int y = _sprites[i]->_startPoint.y - regY + rectTop;
int height = _sprites[i]->_height;
int width = _vm->getVersion() > 4 ? _sprites[i]->_bitmapCast->_initialRect.width() : _sprites[i]->_width;
- warning("drawRect: x=%d, y=%d, w=%d h=%d", x, y, width, height);
Common::Rect drawRect(x, y, x + width, y + height);
addDrawRect(i, drawRect);
inkBasedBlit(surface, *(_sprites[i]->_bitmapCast->_surface), i, drawRect);