Hook up 'convar_findByFlags' command callback

In-engine implementation has logging stripped.
This commit is contained in:
Kawe Mazidjatari 2022-08-13 13:06:30 +02:00
parent f08fbc8745
commit e4eb6d278f
3 changed files with 15 additions and 0 deletions

View File

@ -378,6 +378,7 @@ void ConCommand::InitShipped(void)
g_pCVar->FindCommand("help")->m_fnCommandCallback = CVHelp_f;
g_pCVar->FindCommand("convar_list")->m_fnCommandCallback = CVList_f;
g_pCVar->FindCommand("convar_differences")->m_fnCommandCallback = CVDiff_f;
g_pCVar->FindCommand("convar_findByFlags")->m_fnCommandCallback = CVFlag_f;
#ifndef DEDICATED
//-------------------------------------------------------------------------
// MATERIAL SYSTEM

View File

@ -1092,3 +1092,16 @@ void CVDiff_f(const CCommand& args)
{
cv->CvarDifferences(args);
}
/*
=====================
CVFlag_f
List all ConVar's
with specified flags
=====================
*/
void CVFlag_f(const CCommand& args)
{
cv->CvarFindFlags_f(args);
}

View File

@ -57,6 +57,7 @@ void BHit_f(const CCommand& args);
void CVHelp_f(const CCommand& args);
void CVList_f(const CCommand& args);
void CVDiff_f(const CCommand& args);
void CVFlag_f(const CCommand& args);
///////////////////////////////////////////////////////////////////////////////
class VCallback : public IDetour
{