mirror of
https://github.com/KartKrewDev/RingRacers.git
synced 2026-04-27 12:31:54 +00:00
Don't draw OpenGL loading screen on titlemap
As it looks kinda jarring seeing it appear on the title screen for a split second.
This commit is contained in:
parent
fa5e8a5537
commit
5b4b31a354
1 changed files with 5 additions and 0 deletions
|
|
@ -584,6 +584,11 @@ static void loading_status(void)
|
||||||
char s[16];
|
char s[16];
|
||||||
int x, y;
|
int x, y;
|
||||||
|
|
||||||
|
if (gamestate == GS_TITLESCREEN && titlemapinaction)
|
||||||
|
{
|
||||||
|
return;
|
||||||
|
}
|
||||||
|
|
||||||
I_OsPolling();
|
I_OsPolling();
|
||||||
CON_Drawer();
|
CON_Drawer();
|
||||||
sprintf(s, "%d%%", (++ls_percent)<<1);
|
sprintf(s, "%d%%", (++ls_percent)<<1);
|
||||||
|
|
|
||||||
Loading…
Add table
Reference in a new issue