From 1c13f283cf10aba3bbbd65ff38f08e38ab684626 Mon Sep 17 00:00:00 2001 From: Anders Jenbo Date: Tue, 15 Jun 2021 00:05:09 +0200 Subject: [PATCH] Fix Clang warning --- Source/automap.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Source/automap.cpp b/Source/automap.cpp index 219a96934..89b103c83 100644 --- a/Source/automap.cpp +++ b/Source/automap.cpp @@ -616,7 +616,7 @@ void DrawAutomap(const CelOutputBuffer &out) screen.y += AmLine32; } - for (unsigned playerId = 0; playerId < MAX_PLRS; playerId++) { + for (int playerId = 0; playerId < MAX_PLRS; playerId++) { auto &player = plr[playerId]; if (player.plrlevel == plr[myplr].plrlevel && player.plractive && !player._pLvlChanging) { DrawAutomapPlr(out, playerId);