mirror of
https://github.com/ZDoom/raze-gles.git
synced 2024-11-11 07:11:39 +00:00
sw/src/player.cpp: A bit more complicated cases of unused vars
git-svn-id: https://svn.eduke32.com/eduke32@8689 1a8010ca-5511-0410-912e-c29ae57300e0
This commit is contained in:
parent
ed6e9df07c
commit
f5df1b5a19
1 changed files with 0 additions and 18 deletions
|
@ -5497,18 +5497,9 @@ void
|
|||
DoPlayerWade(PLAYERp pp)
|
||||
{
|
||||
USERp u = User[pp->PlayerSprite];
|
||||
int dot;
|
||||
int wadedir = 0;
|
||||
|
||||
DoPlayerFireOutWater(pp);
|
||||
|
||||
dot = DOT_PRODUCT_2D(pp->xvect, pp->yvect, sintable[NORM_ANGLE(pp->pang+512)], sintable[pp->pang]);
|
||||
|
||||
if (dot < 0)
|
||||
wadedir = -2;
|
||||
else if (dot > 0)
|
||||
wadedir = 2;
|
||||
|
||||
if (DebugOperate)
|
||||
{
|
||||
if (TEST_SYNC_KEY(pp, SK_OPERATE))
|
||||
|
@ -7057,20 +7048,11 @@ void DoPlayerDeathBounce(PLAYERp pp)
|
|||
|
||||
if (pp->lo_sectp && TEST(pp->lo_sectp->extra, SECTFX_SINK))
|
||||
{
|
||||
int loz;
|
||||
|
||||
RESET(sp->cstat, CSTAT_SPRITE_BLOCK|CSTAT_SPRITE_BLOCK_HITSCAN);
|
||||
NewStateGroup(pp->PlayerSprite, sg_PlayerHead);
|
||||
u->slide_vel = 0;
|
||||
SET(u->Flags, SPR_BOUNCE);
|
||||
|
||||
if (pp->lo_sectp && TEST(pp->lo_sectp->extra, SECTFX_SINK))
|
||||
{
|
||||
loz = pp->lo_sectp->floorz - Z(SectUser[pp->lo_sectp - sector]->depth);
|
||||
}
|
||||
else
|
||||
loz = pp->loz;
|
||||
|
||||
|
||||
return;
|
||||
}
|
||||
|
|
Loading…
Reference in a new issue