mirror of
https://github.com/KartKrewDev/RingRacers.git
synced 2025-10-30 08:01:28 +00:00
devmode: draw over literally everything else
Draws over ping and FPS counters.
This commit is contained in:
parent
78df6ec488
commit
31ee3577fd
3 changed files with 8 additions and 3 deletions
|
|
@ -127,6 +127,8 @@ static void finish_legacy_ogl_update()
|
||||||
ST_AskToJoinEnvelope();
|
ST_AskToJoinEnvelope();
|
||||||
#endif
|
#endif
|
||||||
|
|
||||||
|
ST_drawDebugInfo();
|
||||||
|
|
||||||
OglSdlFinishUpdate(cv_vidwait.value);
|
OglSdlFinishUpdate(cv_vidwait.value);
|
||||||
}
|
}
|
||||||
#endif
|
#endif
|
||||||
|
|
@ -179,6 +181,8 @@ static void temp_legacy_finishupdate_draws()
|
||||||
if (discordRequestList != NULL)
|
if (discordRequestList != NULL)
|
||||||
ST_AskToJoinEnvelope();
|
ST_AskToJoinEnvelope();
|
||||||
#endif
|
#endif
|
||||||
|
|
||||||
|
ST_drawDebugInfo();
|
||||||
}
|
}
|
||||||
|
|
||||||
static InternalPassData build_pass_manager()
|
static InternalPassData build_pass_manager()
|
||||||
|
|
|
||||||
|
|
@ -414,7 +414,7 @@ static void ST_drawMusicDebug(INT32 *height)
|
||||||
ST_pushDebugString(height, va(" Song: %8s", mname));
|
ST_pushDebugString(height, va(" Song: %8s", mname));
|
||||||
}
|
}
|
||||||
|
|
||||||
static void ST_drawDebugInfo(void)
|
void ST_drawDebugInfo(void)
|
||||||
{
|
{
|
||||||
INT32 height = 192;
|
INT32 height = 192;
|
||||||
|
|
||||||
|
|
@ -1357,6 +1357,4 @@ void ST_Drawer(void)
|
||||||
break;
|
break;
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
ST_drawDebugInfo();
|
|
||||||
}
|
}
|
||||||
|
|
|
||||||
|
|
@ -41,6 +41,9 @@ void ST_DrawDemoTitleEntry(void);
|
||||||
void ST_AskToJoinEnvelope(void);
|
void ST_AskToJoinEnvelope(void);
|
||||||
#endif
|
#endif
|
||||||
|
|
||||||
|
// devmode
|
||||||
|
void ST_drawDebugInfo(void);
|
||||||
|
|
||||||
// Called by main loop.
|
// Called by main loop.
|
||||||
void ST_Drawer(void);
|
void ST_Drawer(void);
|
||||||
|
|
||||||
|
|
|
||||||
Loading…
Add table
Reference in a new issue