From 7dfb5ff70a4b2a65ceccf605e894fa8702a1f4d2 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Ricardo=20Lu=C3=ADs=20Vaz=20Silva?= Date: Wed, 18 Jun 2025 02:10:36 -0300 Subject: [PATCH] fix unsigned comparison in keysections.cpp --- src/gamedata/keysections.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/gamedata/keysections.cpp b/src/gamedata/keysections.cpp index 763d5331f..e96a3042b 100644 --- a/src/gamedata/keysections.cpp +++ b/src/gamedata/keysections.cpp @@ -175,7 +175,7 @@ void D_LoadWadSettings () while (conf < eof) { - size_t linePos = 0; + ptrdiff_t linePos = 0; // Fetch a line to execute command.Clear();