Replaced uint with unsigned int

This commit is contained in:
Marcus Minhorst 2025-07-19 10:00:49 -04:00 committed by Ricardo Luís Vaz Silva
commit 649ddd7774
31 changed files with 86 additions and 90 deletions

View file

@ -322,7 +322,7 @@ void P_FreeStrifeConversations ()
void P_StartConversation (AActor *npc, AActor *pc, bool facetalker, bool saveangle)
{
AActor *oldtarget;
uint i;
unsigned int i;
// Make sure this is actually a player.
if (pc == nullptr || pc->player == nullptr || npc == nullptr || !pc->Level->isPrimaryLevel()) return;
@ -446,7 +446,7 @@ void P_StartConversation (AActor *npc, AActor *pc, bool facetalker, bool saveang
void P_ResumeConversation ()
{
for (uint i = 0; i < MAXPLAYERS; i++)
for (unsigned int i = 0; i < MAXPLAYERS; i++)
{
if (!playeringame[i])
continue;