mirror of
https://github.com/KartKrewDev/RingRacers.git
synced 2025-10-30 08:01:28 +00:00
Draw fill instead of BG for Ivo until RHI bug fix
This commit is contained in:
parent
9de36ce2a9
commit
16df36b65b
1 changed files with 12 additions and 0 deletions
12
src/k_vote.c
12
src/k_vote.c
|
|
@ -625,6 +625,18 @@ static void Y_DrawVoteBackground(void)
|
||||||
|
|
||||||
const UINT8 planetFrame = (bgTimer / FRACUNIT) % PLANET_FRAMES;
|
const UINT8 planetFrame = (bgTimer / FRACUNIT) % PLANET_FRAMES;
|
||||||
|
|
||||||
|
if (cv_reducevfx.value)
|
||||||
|
{
|
||||||
|
// REMOVE ONCE THE RHI BUG IS FIXED,
|
||||||
|
// BUT UNTIL THEN, IVO NEEDS TO NOT DIE
|
||||||
|
V_DrawFill(
|
||||||
|
0, 0,
|
||||||
|
BASEVIDWIDTH, BASEVIDHEIGHT,
|
||||||
|
31
|
||||||
|
);
|
||||||
|
return;
|
||||||
|
}
|
||||||
|
|
||||||
V_DrawFixedPatch(
|
V_DrawFixedPatch(
|
||||||
0, 0,
|
0, 0,
|
||||||
FRACUNIT, 0,
|
FRACUNIT, 0,
|
||||||
|
|
|
||||||
Loading…
Add table
Reference in a new issue