mirror of
https://github.com/KartKrewDev/RingRacers.git
synced 2025-10-30 08:01:28 +00:00
Merge branch 'gl-no-titlemap-loading' into 'master'
Don't draw OpenGL loading screen on titlemap or credits attract demos See merge request KartKrew/Kart!2166
This commit is contained in:
commit
3694f1b2a2
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) || demo.attract == DEMO_ATTRACT_CREDITS)
|
||||||
|
{
|
||||||
|
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