From 39ee5ddd6d90cb6851c74da70ae13f57d256d832 Mon Sep 17 00:00:00 2001 From: Kawe Mazidjatari <48657826+Mauler125@users.noreply.github.com> Date: Mon, 7 Nov 2022 22:28:59 +0100 Subject: [PATCH] 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). --- r5dev/engine/sys_dll2.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/r5dev/engine/sys_dll2.cpp b/r5dev/engine/sys_dll2.cpp index 38423523..c2c10707 100644 --- a/r5dev/engine/sys_dll2.cpp +++ b/r5dev/engine/sys_dll2.cpp @@ -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);