partially fix bug with line in character window

bug can still occur if you change `No fog` checkbox to false while being in character window
This commit is contained in:
CallowBlack 2022-05-19 00:36:24 +03:00
parent 6566f09260
commit ab5b730e51

View File

@ -6,6 +6,7 @@
namespace cheat::feature namespace cheat::feature
{ {
static bool _prevEnabledState = false;
NoFog::NoFog() : Feature(), NoFog::NoFog() : Feature(),
NFEX(f_Enabled, "No Fog", "NoFog", "Visuals", false, false) NFEX(f_Enabled, "No Fog", "NoFog", "Visuals", false, false)
{ {
@ -40,8 +41,12 @@ namespace cheat::feature
} }
void NoFog::OnGameUpdate() void NoFog::OnGameUpdate()
{
if (_prevEnabledState != f_Enabled)
{ {
app::RenderSettings_set_fog(nullptr, !f_Enabled, nullptr); app::RenderSettings_set_fog(nullptr, !f_Enabled, nullptr);
_prevEnabledState = f_Enabled;
}
} }
} }