summaryrefslogtreecommitdiff
path: root/src/resources
diff options
context:
space:
mode:
authorAndrei Karas <akaras@inbox.ru>2012-12-28 01:34:04 +0300
committerAndrei Karas <akaras@inbox.ru>2012-12-28 01:34:04 +0300
commit7900408adc2b6db601373de2730a80707ec4c837 (patch)
treed86e05a374a1cb16c2e03d0a6a69358339fadac4 /src/resources
parentd05f3904b05e8af1cd319d75a380b2cce7edf77d (diff)
downloadplus-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.cpp3
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)