mirror of
https://github.com/ZDoom/Raze.git
synced 2025-03-24 17:52:29 +00:00
- SW: Remove unused PLAYERstruct
variable turn180_target
that was deprecated with 7bf1cacc7f
.
This commit is contained in:
parent
cf68018909
commit
13639a09b7
4 changed files with 0 additions and 4 deletions
|
@ -651,7 +651,6 @@ struct PLAYERstruct
|
|||
|
||||
void setcursector(sectortype* s) { cursector = s; }
|
||||
bool insector() const { return cursector != nullptr; }
|
||||
fixed_t turn180_target; // 180 degree turn
|
||||
|
||||
// variables that do not fit into sprite structure
|
||||
int hvel,tilt,tilt_dest;
|
||||
|
|
|
@ -7101,7 +7101,6 @@ DEFINE_FIELD_X(SWPlayer, PLAYERstruct, circle_camera_ang)
|
|||
DEFINE_FIELD_X(SWPlayer, PLAYERstruct, camera_check_time_delay)
|
||||
DEFINE_FIELD_X(SWPlayer, PLAYERstruct, cursector)
|
||||
DEFINE_FIELD_X(SWPlayer, PLAYERstruct, lastcursector)
|
||||
DEFINE_FIELD_X(SWPlayer, PLAYERstruct, turn180_target)
|
||||
DEFINE_FIELD_X(SWPlayer, PLAYERstruct, hvel)
|
||||
DEFINE_FIELD_X(SWPlayer, PLAYERstruct, tilt)
|
||||
DEFINE_FIELD_X(SWPlayer, PLAYERstruct, tilt_dest)
|
||||
|
|
|
@ -478,7 +478,6 @@ FSerializer& Serialize(FSerializer& arc, const char* keyname, PLAYERstruct& w, P
|
|||
("camera_check_time_delay", w.camera_check_time_delay)
|
||||
("cursectnum", w.cursector)
|
||||
("lastcursectnum", w.lastcursector)
|
||||
("turn180_target", w.turn180_target)
|
||||
("hvel", w.hvel)
|
||||
("tilt", w.tilt)
|
||||
("tilt_dest", w.tilt_dest)
|
||||
|
|
|
@ -210,7 +210,6 @@ struct SWPlayer native
|
|||
native int16 camera_check_time_delay;
|
||||
|
||||
//native int /*cursectnum,*/lastcursectnum;
|
||||
native int turn180_target; // 180 degree turn
|
||||
|
||||
// variables that do not fit into sprite structure
|
||||
native int hvel,tilt,tilt_dest;
|
||||
|
|
Loading…
Reference in a new issue