mirror of
https://github.com/KartKrewDev/RingRacers.git
synced 2025-10-30 08:01:28 +00:00
Custom Cup monitor now shows up in Statistics Menu
toaster asked me to paste this code in, she's busy w/ break-through-them-all
This commit is contained in:
parent
2ab6710e29
commit
a25b6ca49f
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