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:
parent
a5f0ca38f1
commit
eda4e95607
1 changed files with 4 additions and 1 deletions
|
@ -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;
|
||||
|
|
Loading…
Add table
Reference in a new issue