mirror of
https://github.com/KartKrewDev/RingRacers.git
synced 2025-10-30 08:01:28 +00:00
Fix icons for SECRET_MAP, SECRET_COLOR, and SECRET_SPBATTACK
This commit is contained in:
parent
1ec5b74892
commit
c864bb9182
1 changed files with 9 additions and 2 deletions
|
|
@ -5073,6 +5073,9 @@ static void M_DrawChallengeTile(INT16 i, INT16 j, INT32 x, INT32 y, boolean hili
|
|||
case SECRET_CUP:
|
||||
categoryid = '4';
|
||||
break;
|
||||
case SECRET_MAP:
|
||||
categoryid = '8';
|
||||
break;
|
||||
case SECRET_HARDSPEED:
|
||||
case SECRET_MASTERMODE:
|
||||
case SECRET_ENCORE:
|
||||
|
|
@ -5147,10 +5150,14 @@ static void M_DrawChallengeTile(INT16 i, INT16 j, INT32 x, INT32 y, boolean hili
|
|||
{
|
||||
colormap = R_GetTranslationColormap(TC_DEFAULT, colorid, GTC_MENUCACHE);
|
||||
}
|
||||
iconid = 0;
|
||||
iconid = 2;
|
||||
break;
|
||||
}
|
||||
|
||||
case SECRET_MAP:
|
||||
iconid = 14;
|
||||
break;
|
||||
|
||||
case SECRET_HARDSPEED:
|
||||
iconid = 3;
|
||||
break;
|
||||
|
|
@ -5190,7 +5197,7 @@ static void M_DrawChallengeTile(INT16 i, INT16 j, INT32 x, INT32 y, boolean hili
|
|||
iconid = 9;
|
||||
break;
|
||||
case SECRET_SPBATTACK:
|
||||
iconid = 0; // TEMPORARY
|
||||
iconid = 15;
|
||||
break;
|
||||
|
||||
default:
|
||||
|
|
|
|||
Loading…
Add table
Reference in a new issue