diff options
author | Andrei Karas <akaras@inbox.ru> | 2011-07-13 00:02:36 +0300 |
---|---|---|
committer | Andrei Karas <akaras@inbox.ru> | 2011-07-13 00:44:26 +0300 |
commit | 17b582cf14f6bb1f8f813b0753e9d7049d834799 (patch) | |
tree | 59a6d75933d407ec7005bad61067f7bfeccbe125 /src/graphics.h | |
parent | 0cb2b34eacd0081f82e7d68bbf57149f3549bfc9 (diff) | |
download | plus-17b582cf14f6bb1f8f813b0753e9d7049d834799.tar.gz plus-17b582cf14f6bb1f8f813b0753e9d7049d834799.tar.bz2 plus-17b582cf14f6bb1f8f813b0753e9d7049d834799.tar.xz plus-17b582cf14f6bb1f8f813b0753e9d7049d834799.zip |
Disable software fast fillRectangle in windows.
Diffstat (limited to 'src/graphics.h')
-rw-r--r-- | src/graphics.h | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/src/graphics.h b/src/graphics.h index 40db25c5d..3c78a94fa 100644 --- a/src/graphics.h +++ b/src/graphics.h @@ -225,7 +225,9 @@ class Graphics : public gcn::SDLGraphics BlitMode getBlitMode() { return mBlitMode; } +#if !defined(__MINGW32__) void fillRectangle(const gcn::Rectangle& rectangle); +#endif /** * Updates the screen. This is done by either copying the buffer to the |