We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 8e793ac commit 87ae747Copy full SHA for 87ae747
Client/game_sa/CSettingsSA.cpp
@@ -318,9 +318,9 @@ void CSettingsSA::SetDynamicPedShadowsEnabled(bool bEnable)
318
319
bool CSettingsSA::GetDynamicPedShadowsEnabledByVideoSetting() const noexcept
320
{
321
- bool volumetricShadow;
322
- g_pCore->GetCVars()->Get("dynamic_ped_shadows", volumetricShadow);
323
- return volumetricShadow;
+ bool pedDynamicShadows;
+ g_pCore->GetCVars()->Get("dynamic_ped_shadows", pedDynamicShadows);
+ return pedDynamicShadows;
324
}
325
326
bool CSettingsSA::ResetDynamicPedShadows() noexcept
0 commit comments