correction of fuzz sprite extra line code from Crispy Doom (#303)

This commit is contained in:
Roman Fomin 2021-10-14 21:59:36 +07:00 committed by GitHub
parent 7e16fbe7df
commit 8498ed97f9
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -381,7 +381,7 @@ void R_DrawFuzzColumn(void)
// draw one extra line using only pixels of that line and the one above
if (cutoff)
{
*dest = fullcolormap[6*256+dest[linesize*(fuzzoffset[fuzzpos]-1)/2]];
*dest = fullcolormap[6*256+dest[linesize*fuzzoffset[fuzzpos]]];
}
}