Add '-novpk' command lien option

When '-novpk' is passed, the engine won't use the filesystem cache, and won't mount any VPK's (all files could be loaded from the disk essentially, the VPK files will be ignored).
This commit is contained in:
Kawe Mazidjatari 2022-11-07 22:28:59 +01:00
parent 6266549cd7
commit 39ee5ddd6d

View File

@ -113,7 +113,7 @@ void CEngineAPI::VSetStartupInfo(CEngineAPI* pEngineAPI, StartupInfo_t* pStartup
{
V_FixSlashes(szCacheEnableFilePath, '/');
}
if (FileSystem()->FileExists(szCacheEnableFilePath, nullptr))
if (!CommandLine()->CheckParm("-novpk") && FileSystem()->FileExists(szCacheEnableFilePath, nullptr))
{
FileSystem()->SetVPKCacheModeClient();
FileSystem()->AddSearchPath(".", "MAIN", SearchPathAdd_t::PATH_ADD_TO_TAIL);