Merge branch 'master' of https://github.com/crimsondusk/zdoom
Conflicts: src/actor.h
This commit is contained in:
commit
84351419a3
20 changed files with 256 additions and 94 deletions
|
|
@ -86,7 +86,7 @@ bool P_Thing_Spawn (int tid, AActor *source, int type, angle_t angle, bool fog,
|
|||
|
||||
if (mobj != NULL)
|
||||
{
|
||||
DWORD oldFlags2 = mobj->flags2;
|
||||
ActorFlags2 oldFlags2 = mobj->flags2;
|
||||
mobj->flags2 |= MF2_PASSMOBJ;
|
||||
if (P_TestMobjLocation (mobj))
|
||||
{
|
||||
|
|
@ -429,7 +429,7 @@ bool P_Thing_Raise(AActor *thing, AActor *raiser)
|
|||
// [RH] Check against real height and radius
|
||||
fixed_t oldheight = thing->height;
|
||||
fixed_t oldradius = thing->radius;
|
||||
int oldflags = thing->flags;
|
||||
ActorFlags oldflags = thing->flags;
|
||||
|
||||
thing->flags |= MF_SOLID;
|
||||
thing->height = info->height; // [RH] Use real height
|
||||
|
|
@ -468,7 +468,7 @@ bool P_Thing_CanRaise(AActor *thing)
|
|||
AActor *info = thing->GetDefault();
|
||||
|
||||
// Check against real height and radius
|
||||
int oldflags = thing->flags;
|
||||
ActorFlags oldflags = thing->flags;
|
||||
fixed_t oldheight = thing->height;
|
||||
fixed_t oldradius = thing->radius;
|
||||
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue