diff options
Diffstat (limited to 'src/resources/image.cpp')
-rw-r--r-- | src/resources/image.cpp | 3 |
1 files changed, 1 insertions, 2 deletions
diff --git a/src/resources/image.cpp b/src/resources/image.cpp index 15ad3b54..41c3a194 100644 --- a/src/resources/image.cpp +++ b/src/resources/image.cpp @@ -483,9 +483,8 @@ Image *Image::_GLload(SDL_Surface *tmpImage) glTexParameteri(mTextureType, GL_TEXTURE_MIN_FILTER, GL_NEAREST); glTexParameteri(mTextureType, GL_TEXTURE_MAG_FILTER, GL_NEAREST); - if (SDL_MUSTLOCK(tmpImage)) { + if (SDL_MUSTLOCK(tmpImage)) SDL_UnlockSurface(tmpImage); - } SDL_FreeSurface(tmpImage); |