From f1530a051fc4c9f7f724c2910808820a8e8c81c1 Mon Sep 17 00:00:00 2001 From: Mitchell Richters Date: Sat, 1 Jan 2022 21:02:00 +1100 Subject: [PATCH] - Fix two signedness warnings in `hw_sections.cpp`. --- source/core/rendering/hw_sections.cpp | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/source/core/rendering/hw_sections.cpp b/source/core/rendering/hw_sections.cpp index 6c89606e8..d3b6b6402 100644 --- a/source/core/rendering/hw_sections.cpp +++ b/source/core/rendering/hw_sections.cpp @@ -375,8 +375,8 @@ static void GroupData(TArray& collect, TArray& } if (!collect[i].bugged) // only try to build a proper set of sections if the sector is not malformed. Otherwise just make a single one of everything. { - int wind1count = 0; - int windnegcount = 0; + unsigned wind1count = 0; + unsigned windnegcount = 0; int posplace = -1; for (unsigned l = 0; l < sectloops.Size(); l++) {