mirror of
https://git.do.srb2.org/STJr/SRB2.git
synced 2024-11-18 10:31:42 +00:00
Forgot to commit this change when moving everything over to shortmarioshifts.
This commit is contained in:
parent
64a1fa5421
commit
a842d96a48
1 changed files with 2 additions and 2 deletions
|
@ -1322,7 +1322,7 @@ static void R_ProjectSprite(mobj_t *thing)
|
|||
if (shortmarioshift)
|
||||
{
|
||||
yscale >>= shortmarioshift;
|
||||
this_scale /= 2;
|
||||
this_scale >>= shortmarioshift;
|
||||
}
|
||||
|
||||
if ((thing->flags2 & MF2_LINKDRAW) && thing->tracer) // toast 16/09/16 (SYMMETRY)
|
||||
|
@ -1386,7 +1386,7 @@ static void R_ProjectSprite(mobj_t *thing)
|
|||
}
|
||||
|
||||
if (shortmarioshift)
|
||||
this_scale *= 2;
|
||||
this_scale <<= shortmarioshift;
|
||||
|
||||
if (thing->subsector->sector->cullheight)
|
||||
{
|
||||
|
|
Loading…
Reference in a new issue