diff options
author | Eugene Sandulenko | 2010-09-13 21:13:43 +0000 |
---|---|---|
committer | Eugene Sandulenko | 2010-10-12 23:46:22 +0000 |
commit | 61c7cc13b021792d494fb5213cfff0c4d1ad1ad1 (patch) | |
tree | cba7256402dae419d43ac2e03eb7aa8a4a505d46 | |
parent | 0716b8c1bb597e5144b6693f06dc37a5d0b9eb7a (diff) | |
download | scummvm-rg350-61c7cc13b021792d494fb5213cfff0c4d1ad1ad1.tar.gz scummvm-rg350-61c7cc13b021792d494fb5213cfff0c4d1ad1ad1.tar.bz2 scummvm-rg350-61c7cc13b021792d494fb5213cfff0c4d1ad1ad1.zip |
SWORD25: Fixed debug output in GLImage::blit()
svn-id: r53344
-rw-r--r-- | engines/sword25/gfx/opengl/glimage.cpp | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/engines/sword25/gfx/opengl/glimage.cpp b/engines/sword25/gfx/opengl/glimage.cpp index 08f66e340d..469c1ab167 100644 --- a/engines/sword25/gfx/opengl/glimage.cpp +++ b/engines/sword25/gfx/opengl/glimage.cpp @@ -183,11 +183,11 @@ bool GLImage::blit(int posX, int posY, int flipping, Common::Rect *pPartRect, ui srcImage.w = pPartRect->right - pPartRect->left; srcImage.h = pPartRect->bottom - pPartRect->top; - debug(6, "Blit(%d, %d, %d, [%d, %d, %d, %d], %d, %d, %d)", posX, posY, flipping, + debug(6, "Blit(%d, %d, %d, [%d, %d, %d, %d], %08x, %d, %d)", posX, posY, flipping, pPartRect->left, pPartRect->top, pPartRect->width(), pPartRect->height(), color, width, height); } else { - debug(6, "Blit(%d, %d, %d, [%d, %d, %d, %d], %d, %d, %d)", posX, posY, flipping, 0, 0, + debug(6, "Blit(%d, %d, %d, [%d, %d, %d, %d], %08x, %d, %d)", posX, posY, flipping, 0, 0, srcImage.w, srcImage.h, color, width, height); } |