oooops... fix fix :)

SVN revision: 5339
This commit is contained in:
Carsten Haitzler 2001-09-07 00:45:23 +00:00
parent ebb3f680a3
commit e9cc0986d0
1 changed files with 1 additions and 1 deletions

View File

@ -693,7 +693,7 @@ _r[0] = ((((src[0] >> 16) & 0xff) * 5) + _dith) >> 8; \
_g[0] = ((((src[0] >> 8 ) & 0xff) * 5) + (262 - _dith)) >> 8; \
_b[0] = ((((src[0] ) & 0xff) * 5) + _dith) >> 8; \
*((DATA8 *)dest) = \
(_dither_color_lut[(_r[1] * 36) + (_g[1] * 6) + _b[1]]) \
(_dither_color_lut[(_r[0] * 36) + (_g[0] * 6) + _b[0]]) \
; \
dest += 1; src += 1; \
}