diff options
Diffstat (limited to 'src/resources/imagehelper.cpp')
-rw-r--r-- | src/resources/imagehelper.cpp | 4 |
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; |