diff options
author | Andrei Karas <akaras@inbox.ru> | 2013-12-14 16:59:21 +0300 |
---|---|---|
committer | Andrei Karas <akaras@inbox.ru> | 2013-12-14 16:59:21 +0300 |
commit | d9a77eb8ac5d507665cbf8b20f5d8187148ebfd1 (patch) | |
tree | db2f8a25d466ce6aa5ca1747216156f7869a06d1 /src/render/graphics.cpp | |
parent | 2851324a6847efa7ea6f556941b369e9e304dc23 (diff) | |
download | plus-d9a77eb8ac5d507665cbf8b20f5d8187148ebfd1.tar.gz plus-d9a77eb8ac5d507665cbf8b20f5d8187148ebfd1.tar.bz2 plus-d9a77eb8ac5d507665cbf8b20f5d8187148ebfd1.tar.xz plus-d9a77eb8ac5d507665cbf8b20f5d8187148ebfd1.zip |
Improve a bit separate images drawing.
Diffstat (limited to 'src/render/graphics.cpp')
-rw-r--r-- | src/render/graphics.cpp | 8 |
1 files changed, 4 insertions, 4 deletions
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()); } |