summaryrefslogtreecommitdiff
path: root/src/blitter
diff options
context:
space:
mode:
authorrubidium <rubidium@openttd.org>2014-10-15 18:31:37 +0000
committerrubidium <rubidium@openttd.org>2014-10-15 18:31:37 +0000
commitd534c80e9401c49414f5980aedff13c6100a20c2 (patch)
treeef6dfe4050f387245c018fb71737a8e0e1c31335 /src/blitter
parent155114aa98750b6245e045e347b91d1098d26099 (diff)
downloadopenttd-d534c80e9401c49414f5980aedff13c6100a20c2.tar.xz
(svn r27020) -Cleanup: some coding style consistency improvements (mostly spaces)
Diffstat (limited to 'src/blitter')
-rw-r--r--src/blitter/32bpp_sse_func.hpp2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/blitter/32bpp_sse_func.hpp b/src/blitter/32bpp_sse_func.hpp
index 69d951cd2..fb0ce9eb6 100644
--- a/src/blitter/32bpp_sse_func.hpp
+++ b/src/blitter/32bpp_sse_func.hpp
@@ -159,7 +159,7 @@ static inline __m128i AdjustBrightnessOfTwoPixels(__m128i from, uint32 brightnes
__m128i briAB = _mm_cvtsi32_si128(brightness);
briAB = _mm_shuffle_epi8(briAB, BRIGHTNESS_LOW_CONTROL_MASK); // DEFAULT_BRIGHTNESS in 0, 0x00 in 2.
colAB = _mm_mullo_epi16(colAB, briAB);
- __m128i colAB_ob = _mm_srli_epi16(colAB, 8+7);
+ __m128i colAB_ob = _mm_srli_epi16(colAB, 8 + 7);
colAB = _mm_srli_epi16(colAB, 7);
/* Sum overbright.