mirror of
https://github.com/KartKrewDev/RingRacers.git
synced 2025-12-03 06:33:14 +00:00
Merge branch 'Custom-Cup-statistics-menu-icon' into 'master'
Custom Cup monitor now shows up in Statistics Menu See merge request KartKrew/Kart!1568
This commit is contained in:
commit
de5b151985
1 changed files with 2 additions and 1 deletions
|
|
@ -2467,7 +2467,8 @@ fixed_t M_DrawCupWinData(INT32 rankx, INT32 ranky, cupheader_t *cup, UINT8 diffi
|
|||
|
||||
if (statsmode)
|
||||
{
|
||||
patch_t *monPat = W_CachePatchName(va("CUPMON%c%c", '0' + cup->monitor, 'C'), PU_CACHE);
|
||||
const char monitorletter = (cup->monitor < 10) ? ('0' + cup->monitor) : ('A' + (cup->monitor - 10));
|
||||
patch_t *monPat = W_CachePatchName(va("CUPMON%c%c", monitorletter, 'C'), PU_CACHE);
|
||||
UINT16 moncolor = SKINCOLOR_NONE;
|
||||
|
||||
switch (windata->best_placement)
|
||||
|
|
|
|||
Loading…
Add table
Reference in a new issue