mirror of
https://github.com/ZDoom/Raze.git
synced 2025-05-31 01:11:15 +00:00
- SW: Replace all uses of NULL
with nullptr
.
This commit is contained in:
parent
e3f2d76378
commit
9d64779da0
48 changed files with 748 additions and 748 deletions
|
@ -314,7 +314,7 @@ int DoRotatorMove(short SpriteNum)
|
|||
SPRITEp sp = u->SpriteP;
|
||||
ROTATORp r;
|
||||
short ndx,w,startwall,endwall;
|
||||
SPRITEp pivot = NULL;
|
||||
SPRITEp pivot = nullptr;
|
||||
int i;
|
||||
vec2_t nxy;
|
||||
int dist,closest;
|
||||
|
@ -358,7 +358,7 @@ int DoRotatorMove(short SpriteNum)
|
|||
SetRotatorInactive(SpriteNum);
|
||||
|
||||
if (SP_TAG6(sp))
|
||||
DoMatchEverything(NULL, SP_TAG6(sp), -1);
|
||||
DoMatchEverything(nullptr, SP_TAG6(sp), -1);
|
||||
|
||||
// wait a bit and close it
|
||||
if (u->WaitTics)
|
||||
|
@ -385,7 +385,7 @@ int DoRotatorMove(short SpriteNum)
|
|||
}
|
||||
|
||||
if (SP_TAG6(sp) && TEST_BOOL5(sp))
|
||||
DoMatchEverything(NULL, SP_TAG6(sp), -1);
|
||||
DoMatchEverything(nullptr, SP_TAG6(sp), -1);
|
||||
}
|
||||
|
||||
if (TEST_BOOL2(sp))
|
||||
|
@ -468,7 +468,7 @@ saveable_module saveable_rotator =
|
|||
SIZ(saveable_rotator_code),
|
||||
|
||||
// data
|
||||
NULL,0
|
||||
nullptr,0
|
||||
};
|
||||
|
||||
END_SW_NS
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue