mirror of
https://github.com/ZDoom/raze-gles.git
synced 2024-11-11 15:21:48 +00:00
- remove redundant if statement left over from 2260c2353d
.
This commit is contained in:
parent
2260c2353d
commit
02dfa10d27
4 changed files with 5 additions and 19 deletions
|
@ -244,7 +244,7 @@ void dointerpolations(int smoothratio);
|
|||
int* animateptr(int i);
|
||||
void updateviewport(void);
|
||||
|
||||
void backuppos(player_struct* p, bool clipping = true);
|
||||
void backuppos(player_struct* p, bool noclipping = false);
|
||||
void backuplook(player_struct* p);
|
||||
void backupview(player_struct* p);
|
||||
|
||||
|
|
|
@ -850,9 +850,9 @@ void applylook(int snum, double factor)
|
|||
//
|
||||
//---------------------------------------------------------------------------
|
||||
|
||||
void backuppos(player_struct* p, bool clipping)
|
||||
void backuppos(player_struct* p, bool noclipping)
|
||||
{
|
||||
if (clipping)
|
||||
if (!noclipping)
|
||||
{
|
||||
p->oposx = p->posx;
|
||||
p->oposy = p->posy;
|
||||
|
|
|
@ -2746,14 +2746,7 @@ void processinput_d(int snum)
|
|||
ksqrt((p->posx - p->bobposx) * (p->posx - p->bobposx) + (p->posy - p->bobposy) * (p->posy - p->bobposy));
|
||||
if (p->on_ground) p->bobcounter += sprite[p->i].xvel >> 1;
|
||||
|
||||
if (ud.clipping == 0 && (sector[p->cursectnum].floorpicnum == MIRROR || p->cursectnum < 0 || p->cursectnum >= MAXSECTORS))
|
||||
{
|
||||
backuppos(p, false);
|
||||
}
|
||||
else
|
||||
{
|
||||
backuppos(p);
|
||||
}
|
||||
backuppos(p, ud.clipping == 0 && (sector[p->cursectnum].floorpicnum == MIRROR || p->cursectnum < 0 || p->cursectnum >= MAXSECTORS));
|
||||
|
||||
// Shrinking code
|
||||
|
||||
|
|
|
@ -3641,14 +3641,7 @@ void processinput_r(int snum)
|
|||
ksqrt((p->posx - p->bobposx) * (p->posx - p->bobposx) + (p->posy - p->bobposy) * (p->posy - p->bobposy));
|
||||
if (p->on_ground) p->bobcounter += sprite[p->i].xvel >> 1;
|
||||
|
||||
if (ud.clipping == 0 && (sector[p->cursectnum].floorpicnum == MIRROR || p->cursectnum < 0 || p->cursectnum >= MAXSECTORS))
|
||||
{
|
||||
backuppos(p, false);
|
||||
}
|
||||
else
|
||||
{
|
||||
backuppos(p);
|
||||
}
|
||||
backuppos(p, ud.clipping == 0 && (sector[p->cursectnum].floorpicnum == MIRROR || p->cursectnum < 0 || p->cursectnum >= MAXSECTORS));
|
||||
|
||||
// Shrinking code
|
||||
|
||||
|
|
Loading…
Reference in a new issue