mirror of
https://github.com/KartKrewDev/RingRacers.git
synced 2026-04-27 12:31:54 +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)
|
if (windata)
|
||||||
{
|
{
|
||||||
M_DrawCupWinData(
|
if (cv_reducevfx.value)
|
||||||
x,
|
{
|
||||||
y,
|
M_DrawCupWinData(
|
||||||
templevelsearch.cup,
|
x,
|
||||||
cv_dummygpdifficulty.value,
|
y,
|
||||||
(cupgrid.previewanim & 1),
|
templevelsearch.cup,
|
||||||
false
|
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