mirror of
https://github.com/KartKrewDev/RingRacers.git
synced 2026-03-13 22:56:28 +00:00
Do not interpolate GP Backup indicator with cursor (resolves #839)
This commit is contained in:
parent
7916a6e1cb
commit
e1d0db1175
1 changed files with 7 additions and 1 deletions
|
|
@ -3144,7 +3144,13 @@ void M_DrawCupSelect(void)
|
|||
&& templevelsearch.cup != NULL
|
||||
&& templevelsearch.cup == cupsavedata.cup)
|
||||
{
|
||||
V_DrawScaledPatch(x + 32, y + 32, 0, W_CachePatchName("CUPBKUP2", PU_CACHE));
|
||||
V_DrawScaledPatch(
|
||||
14 + (cupgrid.x*42) + 32,
|
||||
20 + (cupgrid.y*44) + 32
|
||||
+ ((cupgrid.cache_secondrowlocked == true) ? 28 : 0),
|
||||
0,
|
||||
W_CachePatchName("CUPBKUP2", PU_CACHE)
|
||||
);
|
||||
}
|
||||
|
||||
INT16 ty = M_EaseWithTransition(Easing_Linear, 5 * 24);
|
||||
|
|
|
|||
Loading…
Add table
Reference in a new issue