Skip to content

Commit

Permalink
Fix color shells on RF_FRAMELERP entities.
Browse files Browse the repository at this point in the history
Fixes NVIDIA#213.
  • Loading branch information
skullernet authored and Paril committed Dec 10, 2021
1 parent 2180271 commit 9dae41a
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/client/entities.c
Original file line number Diff line number Diff line change
Expand Up @@ -679,7 +679,7 @@ static void CL_AddPacketEntities(void)

// render effects (fullbright, translucent, etc)
if ((effects & EF_COLOR_SHELL))
ent.flags = 0; // renderfx go on color shell entity
ent.flags = renderfx & RF_FRAMELERP; // renderfx go on color shell entity
else
ent.flags = renderfx;

Expand Down

0 comments on commit 9dae41a

Please sign in to comment.