diff options
author | Kamil Zbróg | 2013-12-09 19:03:42 +0000 |
---|---|---|
committer | Kamil Zbróg | 2013-12-09 19:03:42 +0000 |
commit | 7add223d859ae270834cafa5eaac2fb5d5a6bb50 (patch) | |
tree | ee6551d2d7de3c0e07ffb86d7453691f815b1757 /engines/fullpipe/gfx.cpp | |
parent | 8e772f936c43a68e4ae7c68b178bd9fa3a3e4f1f (diff) | |
parent | 8a936200037e6d97212a4d0ad6a710c87cc15b58 (diff) | |
download | scummvm-rg350-7add223d859ae270834cafa5eaac2fb5d5a6bb50.tar.gz scummvm-rg350-7add223d859ae270834cafa5eaac2fb5d5a6bb50.tar.bz2 scummvm-rg350-7add223d859ae270834cafa5eaac2fb5d5a6bb50.zip |
Merge remote-tracking branch 'sync/master' into prince-malik
Diffstat (limited to 'engines/fullpipe/gfx.cpp')
-rw-r--r-- | engines/fullpipe/gfx.cpp | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/engines/fullpipe/gfx.cpp b/engines/fullpipe/gfx.cpp index fba7e402d2..a4dbc30669 100644 --- a/engines/fullpipe/gfx.cpp +++ b/engines/fullpipe/gfx.cpp @@ -596,7 +596,7 @@ void Picture::draw(int x, int y, int style, int angle) { int x1 = x; int y1 = y; - debug(0, "Picture::draw(%d, %d, %d, %d) (%s)", x, y, style, angle, _memfilename); + debug(7, "Picture::draw(%d, %d, %d, %d) (%s)", x, y, style, angle, _memfilename); if (x != -1) x1 = x; @@ -611,7 +611,7 @@ void Picture::draw(int x, int y, int style, int angle) { return; if ((_alpha & 0xff) < 0xff) { - debug(0, "Picture:draw: alpha = %0x", _alpha); + debug(7, "Picture:draw: alpha = %0x", _alpha); } byte *pal = _paletteData; @@ -783,7 +783,7 @@ bool Bitmap::isPixelAtHitPosRB(int x, int y) { } void Bitmap::putDib(int x, int y, int32 *palette) { - debug(0, "Bitmap::putDib(%d, %d)", x, y); + debug(7, "Bitmap::putDib(%d, %d)", x, y); _x = x - g_fullpipe->_sceneRect.left; _y = y - g_fullpipe->_sceneRect.top; |