diff options
author | Andrei Karas <akaras@inbox.ru> | 2012-12-28 01:34:04 +0300 |
---|---|---|
committer | Andrei Karas <akaras@inbox.ru> | 2012-12-28 01:34:04 +0300 |
commit | 7900408adc2b6db601373de2730a80707ec4c837 (patch) | |
tree | d86e05a374a1cb16c2e03d0a6a69358339fadac4 /src/resources | |
parent | d05f3904b05e8af1cd319d75a380b2cce7edf77d (diff) | |
download | plus-7900408adc2b6db601373de2730a80707ec4c837.tar.gz plus-7900408adc2b6db601373de2730a80707ec4c837.tar.bz2 plus-7900408adc2b6db601373de2730a80707ec4c837.tar.xz plus-7900408adc2b6db601373de2730a80707ec4c837.zip |
Fix different warnings from previous commits.
Diffstat (limited to 'src/resources')
-rw-r--r-- | src/resources/sdlimagehelper.cpp | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/src/resources/sdlimagehelper.cpp b/src/resources/sdlimagehelper.cpp index abc9ca068..fb613d9cf 100644 --- a/src/resources/sdlimagehelper.cpp +++ b/src/resources/sdlimagehelper.cpp @@ -129,7 +129,8 @@ Image *SDLImageHelper::load(SDL_Surface *const tmpImage) } Image *SDLImageHelper::createTextSurface(SDL_Surface *const tmpImage, - int width, int height, + int width A_UNUSED, + int height A_UNUSED, const float alpha) { if (!tmpImage) |