summaryrefslogtreecommitdiff
path: root/src/render/sdl2graphics.cpp
diff options
context:
space:
mode:
Diffstat (limited to 'src/render/sdl2graphics.cpp')
-rw-r--r--src/render/sdl2graphics.cpp4
1 files changed, 2 insertions, 2 deletions
diff --git a/src/render/sdl2graphics.cpp b/src/render/sdl2graphics.cpp
index 053049cef..ac7d8debc 100644
--- a/src/render/sdl2graphics.cpp
+++ b/src/render/sdl2graphics.cpp
@@ -157,7 +157,7 @@ bool SDLGraphics::drawRescaledImage(const Image *const image,
&srcRect, &dstRect) < 0);
}
-bool SDLGraphics::drawImage2(const Image *const image,
+bool SDLGraphics::drawImage(const Image *const image,
int dstX, int dstY)
{
return drawImageInline(image, dstX, dstY);
@@ -166,7 +166,7 @@ bool SDLGraphics::drawImage2(const Image *const image,
bool SDLGraphics::drawImageInline(const Image *const image,
int dstX, int dstY)
{
- FUNC_BLOCK("Graphics::drawImage2", 1)
+ FUNC_BLOCK("Graphics::drawImage", 1)
// Check that preconditions for blitting are met.
if (!mWindow || !image || !image->mTexture)
return false;