mirror of
https://github.com/KartKrewDev/RingRacers.git
synced 2026-02-26 23:41:07 +00:00
Arrows for cupgrid page indication
My biggest bugbear for a while and we are literally almost out of time, can polish gfx later
This commit is contained in:
parent
a016a54e52
commit
78404af6fe
1 changed files with 14 additions and 0 deletions
|
|
@ -2587,6 +2587,20 @@ void M_DrawCupSelect(void)
|
|||
M_DrawCupPreview(146 + (24*menutransition.tics), &templevelsearch);
|
||||
|
||||
M_DrawCupTitle(120 - (24*menutransition.tics), &templevelsearch);
|
||||
|
||||
if (cupgrid.numpages > 1)
|
||||
{
|
||||
x = 3 - (skullAnimCounter/5);
|
||||
y = 20 + (44 - 1) - (30*menutransition.tics);
|
||||
|
||||
patch_t *cuparrow = W_CachePatchName("CUPARROW", PU_CACHE);
|
||||
|
||||
if (cupgrid.pageno != 0)
|
||||
V_DrawScaledPatch(x, y, 0, cuparrow);
|
||||
|
||||
if (cupgrid.pageno != cupgrid.numpages-1)
|
||||
V_DrawScaledPatch(BASEVIDWIDTH-x, y, V_FLIP, cuparrow);
|
||||
}
|
||||
}
|
||||
|
||||
static void M_DrawHighLowLevelTitle(INT16 x, INT16 y, INT16 map)
|
||||
|
|
|
|||
Loading…
Add table
Reference in a new issue