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

This commit is contained in:
Velaron 2020-09-03 02:53:18 +03:00 committed by Alibek Omarov
parent 09ae961221
commit f3d8a2bcb0
1 changed files with 4 additions and 1 deletions

View File

@ -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;
}
}