diff options
Diffstat (limited to 'src/render/sdlgraphics.cpp')
-rw-r--r-- | src/render/sdlgraphics.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/render/sdlgraphics.cpp b/src/render/sdlgraphics.cpp index bf4e1a258..9220f530e 100644 --- a/src/render/sdlgraphics.cpp +++ b/src/render/sdlgraphics.cpp @@ -1054,7 +1054,7 @@ void SDLGraphics::fillRectangle(const Rect &restrict rectangle) restrict2 const unsigned pb = (pixel & bMask) * mColor.a; const unsigned pg = (pixel & gMask) * mColor.a; const unsigned pr = (pixel & rMask) * mColor.a; - const unsigned a0 = (255 - mColor.a); + const unsigned a0 = 255 - mColor.a; const unsigned int a1 = a0 * bShift; const unsigned int a2 = a0 * gShift; |