summaryrefslogtreecommitdiff
path: root/src/resources/sdlimagehelper.h
diff options
context:
space:
mode:
authorAndrei Karas <akaras@inbox.ru>2016-04-28 20:18:27 +0300
committerAndrei Karas <akaras@inbox.ru>2016-04-28 20:26:01 +0300
commitfdfd38278cba5fa37d203d0d29b4981e400a529a (patch)
treefbad0c8bcdb2f6c9885d30e9d816761b6e89a0e7 /src/resources/sdlimagehelper.h
parentdda65b8fb01ac399af8fa44085db3cd9ab6cef2b (diff)
downloadplus-fdfd38278cba5fa37d203d0d29b4981e400a529a.tar.gz
plus-fdfd38278cba5fa37d203d0d29b4981e400a529a.tar.bz2
plus-fdfd38278cba5fa37d203d0d29b4981e400a529a.tar.xz
plus-fdfd38278cba5fa37d203d0d29b4981e400a529a.zip
Fix overload virtual warning with SDL2.
Diffstat (limited to 'src/resources/sdlimagehelper.h')
-rw-r--r--src/resources/sdlimagehelper.h3
1 files changed, 2 insertions, 1 deletions
diff --git a/src/resources/sdlimagehelper.h b/src/resources/sdlimagehelper.h
index 731e1a14e..4e1f37a7b 100644
--- a/src/resources/sdlimagehelper.h
+++ b/src/resources/sdlimagehelper.h
@@ -67,7 +67,8 @@ class SDLImageHelper final : public ImageHelper
/**
* Loads an image from an SDL surface.
*/
- Image *load(SDL_Surface *const tmpImage) override final A_WARN_UNUSED;
+ Image *loadSurface(SDL_Surface *const tmpImage) override final
+ A_WARN_UNUSED;
Image *createTextSurface(SDL_Surface *const tmpImage,
const int width, const int height,