mirror of
https://github.com/KartKrewDev/RingRacers.git
synced 2025-12-30 11:42:48 +00:00
Remove cup select emerald flashing if reducevfx is enabled. (Changing setting requires menu reload to take effect.)
This commit is contained in:
parent
d8b0720228
commit
9cd9f68ef0
1 changed files with 22 additions and 8 deletions
|
|
@ -3257,14 +3257,28 @@ void M_DrawCupSelect(void)
|
|||
|
||||
if (windata)
|
||||
{
|
||||
M_DrawCupWinData(
|
||||
x,
|
||||
y,
|
||||
templevelsearch.cup,
|
||||
cv_dummygpdifficulty.value,
|
||||
(cupgrid.previewanim & 1),
|
||||
false
|
||||
);
|
||||
if (cv_reducevfx.value)
|
||||
{
|
||||
M_DrawCupWinData(
|
||||
x,
|
||||
y,
|
||||
templevelsearch.cup,
|
||||
cv_dummygpdifficulty.value,
|
||||
false,
|
||||
false
|
||||
);
|
||||
}
|
||||
else
|
||||
{
|
||||
M_DrawCupWinData(
|
||||
x,
|
||||
y,
|
||||
templevelsearch.cup,
|
||||
cv_dummygpdifficulty.value,
|
||||
(cupgrid.previewanim & 1),
|
||||
false
|
||||
);
|
||||
}
|
||||
}
|
||||
}
|
||||
}
|
||||
|
|
|
|||
Loading…
Add table
Reference in a new issue