mirror of
https://github.com/KartKrewDev/RingRacers.git
synced 2025-10-30 08:01:28 +00:00
Fix different types from mobj_t
This commit is contained in:
parent
a33c2743a1
commit
5c35602d7f
1 changed files with 3 additions and 1 deletions
|
|
@ -462,6 +462,8 @@ typedef struct precipmobj_s
|
||||||
fixed_t ceilingz; // Nearest ceiling above.
|
fixed_t ceilingz; // Nearest ceiling above.
|
||||||
struct ffloor_s *floorrover; // FOF referred by floorz
|
struct ffloor_s *floorrover; // FOF referred by floorz
|
||||||
struct ffloor_s *ceilingrover; // FOF referred by ceilingz
|
struct ffloor_s *ceilingrover; // FOF referred by ceilingz
|
||||||
|
fixed_t floordrop;
|
||||||
|
fixed_t ceilingdrop;
|
||||||
|
|
||||||
// For movement checking.
|
// For movement checking.
|
||||||
fixed_t radius; // Fixed at 2*FRACUNIT
|
fixed_t radius; // Fixed at 2*FRACUNIT
|
||||||
|
|
@ -473,7 +475,7 @@ typedef struct precipmobj_s
|
||||||
|
|
||||||
INT32 tics; // state tic counter
|
INT32 tics; // state tic counter
|
||||||
state_t *state;
|
state_t *state;
|
||||||
INT32 flags; // flags from mobjinfo tables
|
UINT32 flags; // flags from mobjinfo tables
|
||||||
} precipmobj_t;
|
} precipmobj_t;
|
||||||
|
|
||||||
typedef struct actioncache_s
|
typedef struct actioncache_s
|
||||||
|
|
|
||||||
Loading…
Add table
Reference in a new issue