summaryrefslogtreecommitdiff
path: root/src/guichan/sdl
diff options
context:
space:
mode:
authorAndrei Karas <akaras@inbox.ru>2012-02-22 19:50:00 +0300
committerAndrei Karas <akaras@inbox.ru>2012-02-22 22:33:52 +0300
commita8d90b8a84b5a21c53fb5d279dc983ae1e2c3217 (patch)
treef1e35affbe927a1e81fcfafe91747fe3c1e3f56d /src/guichan/sdl
parent3e75f388c21a7c9a00ef2ff802023be00431248a (diff)
downloadplus-a8d90b8a84b5a21c53fb5d279dc983ae1e2c3217.tar.gz
plus-a8d90b8a84b5a21c53fb5d279dc983ae1e2c3217.tar.bz2
plus-a8d90b8a84b5a21c53fb5d279dc983ae1e2c3217.tar.xz
plus-a8d90b8a84b5a21c53fb5d279dc983ae1e2c3217.zip
Fix code style.
Diffstat (limited to 'src/guichan/sdl')
-rw-r--r--src/guichan/sdl/sdlimage.cpp4
1 files changed, 2 insertions, 2 deletions
diff --git a/src/guichan/sdl/sdlimage.cpp b/src/guichan/sdl/sdlimage.cpp
index e4aadc465..4f9b9565c 100644
--- a/src/guichan/sdl/sdlimage.cpp
+++ b/src/guichan/sdl/sdlimage.cpp
@@ -130,8 +130,8 @@ namespace gcn
for (i = 0; i < mSurface->w * mSurface->h; ++i)
{
- if (((unsigned int*)mSurface->pixels)[i] == SDL_MapRGB(
- mSurface->format, 255, 0, 255))
+ if ((static_cast<unsigned int*>(mSurface->pixels))[i]
+ == SDL_MapRGB(mSurface->format, 255, 0, 255))
{
hasPink = true;
break;