diff options
author | Andrei Karas <akaras@inbox.ru> | 2013-12-31 12:40:55 +0300 |
---|---|---|
committer | Andrei Karas <akaras@inbox.ru> | 2013-12-31 12:40:55 +0300 |
commit | 0e3e3df8c385ed8ad6e4612570016ffae03169a6 (patch) | |
tree | 839b82ee1a87f70d47b73535832454716d7dd619 /src/render/sdlgraphics.cpp | |
parent | b85fd67fb14f6a49c7e71f2265254150ba7a1240 (diff) | |
download | plus-0e3e3df8c385ed8ad6e4612570016ffae03169a6.tar.gz plus-0e3e3df8c385ed8ad6e4612570016ffae03169a6.tar.bz2 plus-0e3e3df8c385ed8ad6e4612570016ffae03169a6.tar.xz plus-0e3e3df8c385ed8ad6e4612570016ffae03169a6.zip |
fix compilation errors with different flags.
Diffstat (limited to 'src/render/sdlgraphics.cpp')
-rw-r--r-- | src/render/sdlgraphics.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/render/sdlgraphics.cpp b/src/render/sdlgraphics.cpp index 37d26689e..b384e163e 100644 --- a/src/render/sdlgraphics.cpp +++ b/src/render/sdlgraphics.cpp @@ -104,7 +104,7 @@ bool SDLGraphics::drawRescaledImage(const Image *const image, bool SDLGraphics::drawImage2(const Image *const image, int dstX, int dstY) { - drawImageInline(image, dstX, dstY); + return drawImageInline(image, dstX, dstY); } bool SDLGraphics::drawImageInline(const Image *const image, |