Browse Source

client: vgui: don't fail if client path not given

pull/2/head
Velaron 4 years ago committed by Alibek Omarov
parent
commit
f3d8a2bcb0
  1. 5
      engine/client/vgui/vgui_draw.c

5
engine/client/vgui/vgui_draw.c

@ -329,7 +329,10 @@ void VGui_Startup( const char *clientlib, int width, int height ) @@ -329,7 +329,10 @@ void VGui_Startup( const char *clientlib, int width, int height )
//host.mouse_visible = true;
vgui.Startup( width, height );
}
else failed = true;
else if ( COM_CheckString( clientlib ) )
{
failed = true;
}
}

Loading…
Cancel
Save