mirror of
https://github.com/Mauler125/r5sdk.git
synced 2025-02-09 19:15:03 +01:00
Fix recursive initialization of convars/concommands
'CSourceAppSystemGroup::PreInit' could be called multiple times. Added check for its actual stage before running any initialization code. This fixes the recursive init problem.
This commit is contained in:
parent
2fdcf2ce2c
commit
122cd89aa9
@ -38,11 +38,15 @@
|
||||
//-----------------------------------------------------------------------------
|
||||
bool CSourceAppSystemGroup::PreInit(CSourceAppSystemGroup* pSourceAppSystemGroup)
|
||||
{
|
||||
ConVar::InitShipped();
|
||||
ConVar::PurgeShipped();
|
||||
ConCommand::StaticInit();
|
||||
ConCommand::InitShipped();
|
||||
ConCommand::PurgeShipped();
|
||||
if (pSourceAppSystemGroup->GetCurrentStage() == CSourceAppSystemGroup::CREATION)
|
||||
{
|
||||
ConVar::InitShipped();
|
||||
ConVar::PurgeShipped();
|
||||
ConCommand::StaticInit();
|
||||
ConCommand::InitShipped();
|
||||
ConCommand::PurgeShipped();
|
||||
}
|
||||
|
||||
return CSourceAppSystemGroup__PreInit(pSourceAppSystemGroup);
|
||||
}
|
||||
|
||||
|
Loading…
x
Reference in New Issue
Block a user