diff options
author | Andrei Karas <akaras@inbox.ru> | 2012-02-22 19:50:00 +0300 |
---|---|---|
committer | Andrei Karas <akaras@inbox.ru> | 2012-02-22 22:33:52 +0300 |
commit | a8d90b8a84b5a21c53fb5d279dc983ae1e2c3217 (patch) | |
tree | f1e35affbe927a1e81fcfafe91747fe3c1e3f56d /src/guichan/sdl | |
parent | 3e75f388c21a7c9a00ef2ff802023be00431248a (diff) | |
download | plus-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.cpp | 4 |
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; |