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

View File

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