- cleaned out most of the less frequent typedef types in SW.

This commit is contained in:
Christoph Oelckers 2021-12-31 15:27:18 +01:00
parent 10187e892f
commit 87d2b3274b
12 changed files with 39 additions and 126 deletions

View file

@ -46,7 +46,7 @@ void DoRotatorStopInterp(DSWActor*);
void ReverseRotator(DSWActor* actor)
{
ROTATORp r;
ROTATOR* r;
r = actor->user.rotator.Data();
@ -90,7 +90,7 @@ bool RotatorSwitch(short match, short setting)
void SetRotatorActive(DSWActor* actor)
{
ROTATORp r;
ROTATOR* r;
r = actor->user.rotator.Data();
@ -241,7 +241,7 @@ void DoRotatorStopInterp(DSWActor* actor)
int DoRotator(DSWActor* actor)
{
ROTATORp r;
ROTATOR* r;
short ndx,w,startwall,endwall;
DSWActor* pivot = nullptr;
vec2_t nxy;