engine: client: draw version at bottom right in menu, regardless if dev_overview or net_graph are enabled (those only used in-game)

This commit is contained in:
Alibek Omarov 2025-02-28 15:11:15 +03:00
parent a5f0ca38f1
commit eda4e95607

View file

@ -2031,7 +2031,7 @@ void Con_DrawVersion( void )
int start, height = refState.height;
string curbuild;
if( !scr_drawversion.value || CL_IsDevOverviewMode() == 2 || net_graph.value )
if( !scr_drawversion.value )
return;
if( cls.key_dest == key_menu )
@ -2043,6 +2043,9 @@ void Con_DrawVersion( void )
{
qboolean draw_version;
if( CL_IsDevOverviewMode() == 2 || net_graph.value )
return;
draw_version = cls.scrshot_action == scrshot_normal
|| cls.scrshot_action == scrshot_snapshot
|| host.force_draw_version_time > host.realtime;