From 73d68691cf3baae8f891d42520931d4c7dd75619 Mon Sep 17 00:00:00 2001 From: minenice55 Date: Sun, 26 Apr 2026 19:36:07 -0400 Subject: [PATCH] cap download size to total size in the connection UI --- src/d_clisrv.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/d_clisrv.c b/src/d_clisrv.c index 33802170e..e0625efd2 100644 --- a/src/d_clisrv.c +++ b/src/d_clisrv.c @@ -862,8 +862,8 @@ static inline void CL_DrawConnectionStatus(void) static char tempname[28]; fileneeded_t *file = &fileneeded[lastfilenum]; char *filename = file->filename; - UINT32 currentsize = file->currentsize; UINT32 totalsize = file->totalsize; + UINT32 currentsize = min(file->currentsize, file->totalsize); // Draw the bottom box. M_DrawTextBox(BASEVIDWIDTH/2-128-8, BASEVIDHEIGHT-58-8, 32, 1);