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();
|
||||
#endif
|
||||
|
||||
ST_drawDebugInfo();
|
||||
|
||||
OglSdlFinishUpdate(cv_vidwait.value);
|
||||
}
|
||||
#endif
|
||||
|
|
@ -179,6 +181,8 @@ static void temp_legacy_finishupdate_draws()
|
|||
if (discordRequestList != NULL)
|
||||
ST_AskToJoinEnvelope();
|
||||
#endif
|
||||
|
||||
ST_drawDebugInfo();
|
||||
}
|
||||
|
||||
static InternalPassData build_pass_manager()
|
||||
|
|
|
|||
|
|
@ -414,7 +414,7 @@ static void ST_drawMusicDebug(INT32 *height)
|
|||
ST_pushDebugString(height, va(" Song: %8s", mname));
|
||||
}
|
||||
|
||||
static void ST_drawDebugInfo(void)
|
||||
void ST_drawDebugInfo(void)
|
||||
{
|
||||
INT32 height = 192;
|
||||
|
||||
|
|
@ -1357,6 +1357,4 @@ void ST_Drawer(void)
|
|||
break;
|
||||
}
|
||||
}
|
||||
|
||||
ST_drawDebugInfo();
|
||||
}
|
||||
|
|
|
|||
|
|
@ -41,6 +41,9 @@ void ST_DrawDemoTitleEntry(void);
|
|||
void ST_AskToJoinEnvelope(void);
|
||||
#endif
|
||||
|
||||
// devmode
|
||||
void ST_drawDebugInfo(void);
|
||||
|
||||
// Called by main loop.
|
||||
void ST_Drawer(void);
|
||||
|
||||
|
|
|
|||
Loading…
Add table
Reference in a new issue