mirror of
https://github.com/KartKrewDev/RingRacers.git
synced 2026-05-10 19:01:50 +00:00
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:
parent
599d7a5345
commit
eb58de0980
1 changed files with 2 additions and 2 deletions
|
|
@ -7233,8 +7233,8 @@ static void M_EmblemHints(INT32 choice)
|
||||||
|
|
||||||
static void M_DrawEmblemHints(void)
|
static void M_DrawEmblemHints(void)
|
||||||
{
|
{
|
||||||
INT32 i, j = 0, x, y;
|
INT32 i, j = 0, x, y, left_hints = NUMHINTS;
|
||||||
UINT32 collected = 0, local = 0, left_hints = NUMHINTS;
|
UINT32 collected = 0, local = 0;
|
||||||
emblem_t *emblem;
|
emblem_t *emblem;
|
||||||
const char *hint;
|
const char *hint;
|
||||||
|
|
||||||
|
|
|
||||||
Loading…
Add table
Reference in a new issue