mirror of
https://github.com/KartKrewDev/RingRacers.git
synced 2025-10-30 08:01:28 +00:00
Merge branch 'fix-opengl-intro' into 'master'
Legacy GL: hack to fix blank screen once "kartkrew.org" and "2013 - 11 years - 2024" text appears Closes #1207 See merge request KartKrew/Kart!2284
This commit is contained in:
commit
f29ed06e92
1 changed files with 6 additions and 0 deletions
|
|
@ -505,6 +505,12 @@ static void F_IntroDrawScene(void)
|
|||
V_DrawCenteredMenuString(BASEVIDWIDTH/2, 184 - (textoffs/FRACUNIT), (trans<<V_ALPHASHIFT)|V_SUBTRACT, "kartkrew.org");
|
||||
|
||||
V_ClearClipRect();
|
||||
|
||||
// FIXME:
|
||||
// !!! LEGACY GL OMEGA-HACK !!!
|
||||
// V_SUBTRACT is rendering the entire screen black ONLY IF it is the final draw call.
|
||||
// The following draw call completely off-screen avoids this.
|
||||
V_DrawCharacter(-100, -100, 'c', true);
|
||||
}
|
||||
}
|
||||
|
||||
|
|
|
|||
Loading…
Add table
Reference in a new issue