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:
Oni 2024-04-14 17:14:40 +00:00
commit f29ed06e92

View file

@ -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);
}
}