Fix "symmetrical"-ish emblem hints for ERRORMODE

"left_hints" is always 3, 4, or 5, so the signedness is irrelevant.
But with ERRORMODE set to 1 when compiling,
the compile would previously stop due to comparing INT32 to UINT32.
This commit is contained in:
Zwip-Zwap Zapony 2020-01-12 23:09:27 +01:00
parent e6ddfc7cdf
commit 66c9e8e3aa
1 changed files with 2 additions and 2 deletions

View File

@ -7233,8 +7233,8 @@ static void M_EmblemHints(INT32 choice)
static void M_DrawEmblemHints(void)
{
INT32 i, j = 0, x, y;
UINT32 collected = 0, local = 0, left_hints = NUMHINTS;
INT32 i, j = 0, x, y, left_hints = NUMHINTS;
UINT32 collected = 0, local = 0;
emblem_t *emblem;
const char *hint;