Legacy GL: hack to fix blank screen once "kartkrew.org" and "2013 - 11 years - 2024" text appears

This commit is contained in:
James R 2024-04-14 00:59:28 -07:00
parent 45583b1944
commit 56b142e737

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