Skip to content

Commit

Permalink
Fix top edge of spectre fuzz effect being too dark in front of certai…
Browse files Browse the repository at this point in the history
…n greys
  • Loading branch information
bradharding committed Jan 11, 2025
1 parent a33b7d9 commit 084a80a
Showing 1 changed file with 1 addition and 4 deletions.
5 changes: 1 addition & 4 deletions src/r_draw.c
Original file line number Diff line number Diff line change
Expand Up @@ -1100,10 +1100,7 @@ void R_DrawFuzzColumn(void)
dest = ylookup0[dc_yl] + dc_x;

// top
if (dc_yl >= 2)
BIGFUZZYPIXEL(8, (fuzz1table[fuzz1pos++] = FUZZ1(-1, 1)));
else
BIGFUZZYPIXEL(6, (fuzz1table[fuzz1pos++] = FUZZ1(0, 1)));
BIGFUZZYPIXEL(6, (fuzz1table[fuzz1pos++] = FUZZ1((dc_yl >= 2 ? -1 : 0), 1)));

dest += SCREENWIDTH * 2;

Expand Down

0 comments on commit 084a80a

Please sign in to comment.