rasterize: fix new bug with captured 3d

This commit is contained in:
zeromus 2009-04-02 07:03:41 +00:00
parent 21e027bfa1
commit 32ca5e236e
1 changed files with 1 additions and 1 deletions

View File

@ -957,7 +957,7 @@ static void SoftRastGetLine(int line, u16* dst, u8* dstAlpha)
}
static void SoftRastGetLineCaptured(int line, u16* dst) {
Fragment* src = screen+((191-line)<<8);
Fragment* src = screen+((line)<<8);
for(int i=0;i<256;i++)
{
u8 r = src->color.components.r;