Check is no longer necessary

Check is no longer necessary; shipped cvars get initialized early enough now.
This commit is contained in:
Kawe Mazidjatari 2023-03-26 17:46:30 +02:00
parent d9926af80c
commit 24b8cc6215

View File

@ -18,7 +18,7 @@ void CBaseFileSystem::Warning(CBaseFileSystem* pFileSystem, FileWarningLevel_t l
if (level >= FileWarningLevel_t::FILESYSTEM_WARNING_REPORTALLACCESSES)
{
// Logging reads is very verbose! Explicitly toggle..
if (!fs_showAllReads || !fs_showAllReads->GetBool())
if (!fs_showAllReads->GetBool())
{
return;
}