From d9a77eb8ac5d507665cbf8b20f5d8187148ebfd1 Mon Sep 17 00:00:00 2001 From: Andrei Karas Date: Sat, 14 Dec 2013 16:59:21 +0300 Subject: Improve a bit separate images drawing. --- src/render/graphics.cpp | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) (limited to 'src/render/graphics.cpp') diff --git a/src/render/graphics.cpp b/src/render/graphics.cpp index 5a0adfeef..561ce3a90 100644 --- a/src/render/graphics.cpp +++ b/src/render/graphics.cpp @@ -494,10 +494,10 @@ void Graphics::drawImageRect(const int x, const int y, // Draw the corners if (drawMain) { - drawImage(topLeft, x, y); - drawImage(topRight, x + w - topRight->getWidth(), y); - drawImage(bottomLeft, x, h - bottomLeft->getHeight() + y); - drawImage(bottomRight, + DRAW_IMAGE(this, topLeft, x, y); + DRAW_IMAGE(this, topRight, x + w - topRight->getWidth(), y); + DRAW_IMAGE(this, bottomLeft, x, h - bottomLeft->getHeight() + y); + DRAW_IMAGE(this, bottomRight, x + w - bottomRight->getWidth(), y + h - bottomRight->getHeight()); } -- cgit v1.2.3-60-g2f50