mirror of
https://github.com/nillerusr/source-engine.git
synced 2024-12-22 14:16:50 +00:00
fix error when no -game was provided
This commit is contained in:
parent
84745a2085
commit
a66efd6102
@ -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()
|
||||
|
Loading…
Reference in New Issue
Block a user