diff options
Diffstat (limited to 'src/render/sdlgraphics.cpp')
-rw-r--r-- | src/render/sdlgraphics.cpp | 6 |
1 files changed, 6 insertions, 0 deletions
diff --git a/src/render/sdlgraphics.cpp b/src/render/sdlgraphics.cpp index 494e17e0e..e9b6bef4a 100644 --- a/src/render/sdlgraphics.cpp +++ b/src/render/sdlgraphics.cpp @@ -198,6 +198,12 @@ bool SDLGraphics::drawImageInline(const Image *const image, return 0; } +bool SDLGraphics::copyImage(const Image *const image, + int dstX, int dstY) +{ + return drawImageInline(image, dstX, dstY); +} + void SDLGraphics::drawImageCached(const Image *const image, int x, int y) { |