From 0fd42a50e89a82bed7b546773adbffe7ea482366 Mon Sep 17 00:00:00 2001 From: Christoph Oelckers Date: Wed, 3 Aug 2022 19:44:37 +0200 Subject: [PATCH] -fixed ZScript warnings with comparison signedness. --- wadsrc/static/zscript/games/duke/ui/sbar_d.zs | 2 +- wadsrc/static/zscript/games/exhumed/ui/screens.zs | 6 +++--- wadsrc/static/zscript/games/sw/ui/sbar.zs | 4 ++-- 3 files changed, 6 insertions(+), 6 deletions(-) diff --git a/wadsrc/static/zscript/games/duke/ui/sbar_d.zs b/wadsrc/static/zscript/games/duke/ui/sbar_d.zs index 488466823..6e2f3df65 100644 --- a/wadsrc/static/zscript/games/duke/ui/sbar_d.zs +++ b/wadsrc/static/zscript/games/duke/ui/sbar_d.zs @@ -348,7 +348,7 @@ class DukeStatusBar : DukeCommonStatusBar DrawTexture(ThreeByFive[index], (x - 7, y), DI_ITEM_LEFT|DI_ITEM_VCENTER, 1, (-1, -1), (1, 1), STYLE_Translucent, Raze.ShadeToLight(shade - 10), Translation.MakeID(Translation_Remap, 7)); let pe = Raze.ShadeToLight(shade); DrawTexture(ThreeByFive[10], (x - 3, y), DI_ITEM_LEFT | DI_ITEM_VCENTER, 1, (-1, -1), (1, 1), STYLE_Translucent, pe); - for (int i = 0; i < format.Length(); i++) + for (uint i = 0; i < format.Length(); i++) { int cc = format.ByteAt(i); if (cc != " ") diff --git a/wadsrc/static/zscript/games/exhumed/ui/screens.zs b/wadsrc/static/zscript/games/exhumed/ui/screens.zs index 32d6f6009..2578eebed 100644 --- a/wadsrc/static/zscript/games/exhumed/ui/screens.zs +++ b/wadsrc/static/zscript/games/exhumed/ui/screens.zs @@ -591,12 +591,12 @@ class LastLevelCinema : ScreenJob if (printFont == ConFont) { yy *= 2; - for (int i = 0; i < nStringTypeOn; i++, yy += 10) Screen.DrawText(ConFont, Font.CR_GREEN, 140, yy, screentext.StringAt(i), DTA_FullscreenScale, FSMode_Fit640x400); + for (uint i = 0; i < nStringTypeOn; i++, yy += 10) Screen.DrawText(ConFont, Font.CR_GREEN, 140, yy, screentext.StringAt(i), DTA_FullscreenScale, FSMode_Fit640x400); Screen.DrawText(ConFont, Font.CR_GREEN, 140, yy, screentext.StringAt(nStringTypeOn), DTA_FullscreenScale, FSMode_Fit640x400, DTA_TextLen, nCharTypeOn); } else { - for (int i = 0; i < nStringTypeOn; i++, yy += 8) Screen.DrawText(SmallFont2, Font.CR_UNTRANSLATED, 70, yy, screentext.StringAt(i), DTA_FullscreenScale, FSMode_Fit320x200); + for (uint i = 0; i < nStringTypeOn; i++, yy += 8) Screen.DrawText(SmallFont2, Font.CR_UNTRANSLATED, 70, yy, screentext.StringAt(i), DTA_FullscreenScale, FSMode_Fit320x200); Screen.DrawText(SmallFont2, Font.CR_UNTRANSLATED, 70, yy, screentext.StringAt(nStringTypeOn), DTA_FullscreenScale, FSMode_Fit320x200, DTA_TextLen, nCharTypeOn); } } @@ -637,7 +637,7 @@ class LastLevelCinema : ScreenJob { nCharTypeOn = 0; nStringTypeOn++; - if (nStringTypeOn >= screentext.Count()) + if (nStringTypeOn >= uint(screentext.Count())) { nextclock = (GameTicRate * (screentext.Count() + 2)) + ticks; phase = 3; diff --git a/wadsrc/static/zscript/games/sw/ui/sbar.zs b/wadsrc/static/zscript/games/sw/ui/sbar.zs index 0b7123185..88a1dd766 100644 --- a/wadsrc/static/zscript/games/sw/ui/sbar.zs +++ b/wadsrc/static/zscript/games/sw/ui/sbar.zs @@ -126,7 +126,7 @@ class SWStatusBar : RazeStatusBar buffer = String.Format("%03d", number); - for (int i = 0; i < buffer.length(); i++) + for (uint i = 0; i < buffer.length(); i++) { let c = buffer.ByteAt(i); if (c < "0" || c > "9") @@ -148,7 +148,7 @@ class SWStatusBar : RazeStatusBar void DisplaySummaryString(double x, double y, int color, int shade, String buffer) { - for (int i = 0; i < buffer.length(); i++) + for (uint i = 0; i < buffer.length(); i++) { let ch = buffer.ByteAt(i);