summaryrefslogtreecommitdiff
path: root/src/resources/imagehelper.cpp
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/imagehelper.cpp
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/imagehelper.cpp')
-rw-r--r--src/resources/imagehelper.cpp4
1 files changed, 2 insertions, 2 deletions
diff --git a/src/resources/imagehelper.cpp b/src/resources/imagehelper.cpp
index af573709b..1067058b2 100644
--- a/src/resources/imagehelper.cpp
+++ b/src/resources/imagehelper.cpp
@@ -48,7 +48,7 @@ Image *ImageHelper::load(SDL_RWops *const rw)
return nullptr;
}
- Image *const image = load(tmpImage);
+ Image *const image = loadSurface(tmpImage);
MSDL_FreeSurface(tmpImage);
return image;
@@ -116,7 +116,7 @@ Image *ImageHelper::load(SDL_RWops *const rw, Dye const &dye)
}
}
- Image *const image = load(surf);
+ Image *const image = loadSurface(surf);
MSDL_FreeSurface(surf);
BLOCK_END("ImageHelper::load")
return image;