cap download size to total size in the connection UI

This commit is contained in:
minenice55 2026-04-26 19:36:07 -04:00
parent 4d7d931c73
commit 73d68691cf

View file

@ -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);