Replaced uint with unsigned int
This commit is contained in:
parent
b2c57b6656
commit
649ddd7774
31 changed files with 86 additions and 90 deletions
|
|
@ -1776,9 +1776,9 @@ int P_LookForEnemies (AActor *actor, INTBOOL allaround, FLookExParams *params)
|
|||
|
||||
int P_LookForPlayers (AActor *actor, INTBOOL allaround, FLookExParams *params)
|
||||
{
|
||||
uint c;
|
||||
int pnum;
|
||||
player_t* player;
|
||||
unsigned int c;
|
||||
int pnum;
|
||||
player_t* player;
|
||||
bool chasegoal = params? (!(params->flags & LOF_DONTCHASEGOAL)) : true;
|
||||
|
||||
if (actor->TIDtoHate != 0)
|
||||
|
|
@ -3234,7 +3234,7 @@ DEFINE_ACTION_FUNCTION(AActor, A_Pain)
|
|||
|
||||
int CheckBossDeath (AActor *actor)
|
||||
{
|
||||
uint i;
|
||||
unsigned int i;
|
||||
|
||||
// make sure there is a player alive for victory
|
||||
for (i = 0; i < MAXPLAYERS; i++)
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue