Fix typo in previous commit

This commit is contained in:
Soren Sandmann Pedersen 2007-04-26 14:37:53 -04:00
parent 0ebe48be59
commit a300ef84ce

View File

@ -639,7 +639,7 @@ mmxCombineSaturateU (CARD32 *dest, const CARD32 *src, int width)
CARD32 da = ~d >> 24;
if (sa > da) {
__m64 msa = load8888(FbIntDiv(da, sa))<<24;
__m64 msa = load8888(FbIntDiv(da, sa) << 24);
msa = expand_alpha_rev(msa);
ms = pix_multiply(ms, msa);
}