fix error when no -game was provided

This commit is contained in:
Er2 2023-05-06 19:07:53 +03:00
parent 84745a2085
commit a66efd6102

View File

@ -324,15 +324,14 @@ static bool FileSystem_GetBaseDir( char *baseDir, int baseDirLen )
{
#ifdef ANDROID
Q_strncpy(baseDir, getenv("VALVE_GAME_PATH"), baseDirLen);
return true;
#else
// get relative base dir which appends to other paths
// allows to run from everywhere
// "hl2/portal" -> "hl2"; "hl2" -> ""
Q_strncpy( baseDir, CommandLine()->ParmValue("-game"), baseDirLen );
Q_strncpy( baseDir, CommandLine()->ParmValue("-game", ""), baseDirLen );
Q_StripFilename( baseDir );
return true;
#endif
return true;
}
void LaunchVConfig()