diff options
Diffstat (limited to 'src/render/graphics.h')
-rw-r--r-- | src/render/graphics.h | 8 |
1 files changed, 3 insertions, 5 deletions
diff --git a/src/render/graphics.h b/src/render/graphics.h index a0c0c64eb..e1d4f1ec4 100644 --- a/src/render/graphics.h +++ b/src/render/graphics.h @@ -152,12 +152,10 @@ class Graphics : public gcn::Graphics /** * Draws a resclaled version of the image */ - virtual bool drawRescaledImage(const Image *const image, int srcX, - int srcY, int dstX, int dstY, - const int width, const int height, + virtual bool drawRescaledImage(const Image *const image, + int dstX, int dstY, const int desiredWidth, - const int desiredHeight, - const bool useColor = false) = 0; + const int desiredHeight) = 0; virtual void drawPattern(const Image *const image, const int x, const int y, |