mirror of
https://github.com/ZDoom/gzdoom-gles.git
synced 2025-02-18 01:21:32 +00:00
- Remove fakedblocker, since it was unused.
SVN r2391 (trunk)
This commit is contained in:
parent
86b17d6d9f
commit
551f0d3148
1 changed files with 0 additions and 3 deletions
|
@ -1212,7 +1212,6 @@ bool P_CheckPosition (AActor *thing, fixed_t x, fixed_t y, FCheckPosition &tm)
|
||||||
{
|
{
|
||||||
sector_t *newsec;
|
sector_t *newsec;
|
||||||
AActor *thingblocker;
|
AActor *thingblocker;
|
||||||
AActor *fakedblocker;
|
|
||||||
fixed_t realheight = thing->height;
|
fixed_t realheight = thing->height;
|
||||||
|
|
||||||
tm.thing = thing;
|
tm.thing = thing;
|
||||||
|
@ -1279,7 +1278,6 @@ bool P_CheckPosition (AActor *thing, fixed_t x, fixed_t y, FCheckPosition &tm)
|
||||||
// Check things first, possibly picking things up.
|
// Check things first, possibly picking things up.
|
||||||
thing->BlockingMobj = NULL;
|
thing->BlockingMobj = NULL;
|
||||||
thingblocker = NULL;
|
thingblocker = NULL;
|
||||||
fakedblocker = NULL;
|
|
||||||
if (thing->player)
|
if (thing->player)
|
||||||
{ // [RH] Fake taller height to catch stepping up into things.
|
{ // [RH] Fake taller height to catch stepping up into things.
|
||||||
thing->height = realheight + thing->MaxStepHeight;
|
thing->height = realheight + thing->MaxStepHeight;
|
||||||
|
@ -1326,7 +1324,6 @@ bool P_CheckPosition (AActor *thing, fixed_t x, fixed_t y, FCheckPosition &tm)
|
||||||
}
|
}
|
||||||
// Nothing is blocking us, but this actor potentially could
|
// Nothing is blocking us, but this actor potentially could
|
||||||
// if there is something else to step on.
|
// if there is something else to step on.
|
||||||
fakedblocker = BlockingMobj;
|
|
||||||
thing->BlockingMobj = NULL;
|
thing->BlockingMobj = NULL;
|
||||||
}
|
}
|
||||||
else
|
else
|
||||||
|
|
Loading…
Reference in a new issue