mirror of
https://git.do.srb2.org/KartKrew/Kart-Public.git
synced 2025-02-03 06:51:00 +00:00
Merge branch 'opengl-projectsprite-fix' into 'master'
OpenGL HWR_ProjectSprite fix See merge request STJr/SRB2!255
This commit is contained in:
commit
c127ea3ceb
1 changed files with 5 additions and 2 deletions
|
@ -3941,7 +3941,7 @@ static void HWR_DrawSpriteShadow(gr_vissprite_t *spr, GLPatch_t *gpatch, float t
|
|||
angle_t shadowdir;
|
||||
|
||||
// Set direction
|
||||
if (splitscreen && stplyr != &players[displayplayer])
|
||||
if (splitscreen && stplyr == &players[secondarydisplayplayer])
|
||||
shadowdir = localangle2 + FixedAngle(cv_cam2_rotate.value);
|
||||
else
|
||||
shadowdir = localangle + FixedAngle(cv_cam_rotate.value);
|
||||
|
@ -5302,7 +5302,10 @@ static void HWR_ProjectSprite(mobj_t *thing)
|
|||
}
|
||||
|
||||
heightsec = thing->subsector->sector->heightsec;
|
||||
phs = players[displayplayer].mo->subsector->sector->heightsec;
|
||||
if (viewplayer->mo && viewplayer->mo->subsector)
|
||||
phs = viewplayer->mo->subsector->sector->heightsec;
|
||||
else
|
||||
phs = -1;
|
||||
|
||||
if (heightsec != -1 && phs != -1) // only clip things which are in special sectors
|
||||
{
|
||||
|
|
Loading…
Reference in a new issue