diff options
Diffstat (limited to 'src/graphics.h')
-rw-r--r-- | src/graphics.h | 13 |
1 files changed, 10 insertions, 3 deletions
diff --git a/src/graphics.h b/src/graphics.h index f62662f7..6bd32ec2 100644 --- a/src/graphics.h +++ b/src/graphics.h @@ -72,9 +72,16 @@ class Graphics : public gcn::SDLGraphics { * @return <code>true</code> if the image was blitted properly * <code>false</code> otherwise. */ - virtual bool drawImage(Image *image, int srcX, int srcY, int dstX, int dstY, int width, int height); - - virtual void drawImagePattern(Image *image, int x, int y, int w, int h); + virtual bool + drawImage(Image *image, + int srcX, int srcY, + int dstX, int dstY, + int width, int height); + + virtual void + drawImagePattern(Image *image, + int x, int y, + int w, int h); /** * Draws a rectangle using images. 4 corner images, 4 side images and 1 |