- SW: Remove unused PLAYERstruct variable turn180_target that was deprecated with 7bf1cacc7f.

This commit is contained in:
Mitchell Richters 2021-12-30 20:46:36 +11:00
parent cf68018909
commit 13639a09b7
4 changed files with 0 additions and 4 deletions

View file

@ -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;

View file

@ -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)

View file

@ -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)

View file

@ -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;