diff options
author | Thorbjørn Lindeijer <thorbjorn@lindeijer.nl> | 2012-08-02 03:30:03 +0200 |
---|---|---|
committer | Thorbjørn Lindeijer <thorbjorn@lindeijer.nl> | 2012-08-02 03:30:23 +0200 |
commit | 33032808e024b6dade5b751f15f4878edd507787 (patch) | |
tree | f451fba79080bdeb0c4d9f10c215cff3653491e7 /src/graphics.h | |
parent | 7e8ba785e95385d32024e151697d2e6d4ec61ef3 (diff) | |
download | mana-33032808e024b6dade5b751f15f4878edd507787.tar.gz mana-33032808e024b6dade5b751f15f4878edd507787.tar.bz2 mana-33032808e024b6dade5b751f15f4878edd507787.tar.xz mana-33032808e024b6dade5b751f15f4878edd507787.zip |
Dynamically scaling background for login screen
Hacked Graphics::drawRescaledImage a bit to make it work...
Diffstat (limited to 'src/graphics.h')
-rw-r--r-- | src/graphics.h | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/src/graphics.h b/src/graphics.h index 4c1b2561..36a9adb9 100644 --- a/src/graphics.h +++ b/src/graphics.h @@ -102,7 +102,7 @@ class Graphics : public gcn::SDLGraphics bool drawImage(Image *image, int x, int y); /** - * Draws a resclaled version of the image + * Draws a rescaled version of the image. */ bool drawRescaledImage(Image *image, int srcX, int srcY, int dstX, int dstY, @@ -115,7 +115,7 @@ class Graphics : public gcn::SDLGraphics false); } /** - * Draws a resclaled version of the image + * Draws a rescaled version of the image. */ virtual bool drawRescaledImage(Image *image, int srcX, int srcY, int dstX, int dstY, |