diff options
Diffstat (limited to 'src/render/sdl2graphics.cpp')
-rw-r--r-- | src/render/sdl2graphics.cpp | 6 |
1 files changed, 6 insertions, 0 deletions
diff --git a/src/render/sdl2graphics.cpp b/src/render/sdl2graphics.cpp index 1acca0a6c..fc9c8222d 100644 --- a/src/render/sdl2graphics.cpp +++ b/src/render/sdl2graphics.cpp @@ -212,6 +212,12 @@ bool SDLGraphics::drawImageInline(const Image *const image, return !MSDL_RenderCopy(mRenderer, image->mTexture, &srcRect, &dstRect); } +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) { |