diff options
author | Andrei Karas <akaras@inbox.ru> | 2013-12-29 21:22:33 +0300 |
---|---|---|
committer | Andrei Karas <akaras@inbox.ru> | 2013-12-29 21:22:33 +0300 |
commit | f94a6551b8d140e272ac1c46bce1ff0e5df34986 (patch) | |
tree | 35c764dfec7b76f926c30cd186b6fe36968b6529 /src/render/graphics.cpp | |
parent | 0336b91f51cdf14e022f74d16c15892b63b658eb (diff) | |
download | mv-f94a6551b8d140e272ac1c46bce1ff0e5df34986.tar.gz mv-f94a6551b8d140e272ac1c46bce1ff0e5df34986.tar.bz2 mv-f94a6551b8d140e272ac1c46bce1ff0e5df34986.tar.xz mv-f94a6551b8d140e272ac1c46bce1ff0e5df34986.zip |
improve draw image calls.
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 9072c0a29..cd2332d19 100644 --- a/src/render/graphics.cpp +++ b/src/render/graphics.cpp @@ -482,17 +482,17 @@ void Graphics::drawImageRect(const int x, const int y, // Draw the corners if (drawMain) { - DRAW_IMAGE(this, topLeft, x, y); + drawImage2(topLeft, x, y); const int trw = topRight->getWidth(); if (w > trw) { - DRAW_IMAGE(this, topRight, x + w - trw, y); + drawImage2(topRight, x + w - trw, y); } - DRAW_IMAGE(this, bottomLeft, x, h - bottomLeft->getHeight() + y); + drawImage2(bottomLeft, x, h - bottomLeft->getHeight() + y); const int brw = bottomRight->getWidth(); if (w > brw) { - DRAW_IMAGE(this, bottomRight, + drawImage2(bottomRight, x + w - brw, y + h - bottomRight->getHeight()); } |