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 411b39b commit 7f65849Copy full SHA for 7f65849
Client/game_sa/CWeatherSA.cpp
@@ -232,20 +232,15 @@ bool CWeatherSA::ResetRainbow()
232
bool CWeatherSA::SetTimerCycle(bool value) noexcept
233
{
234
if (value)
235
- {
236
MemSet((void*)0x53BFBD, 0x90, 5);
237
- }
238
else
239
240
MemCpy((void*)0x53BFBD, "\xE8\x4E\x0F\xFF\xFF", 5);
241
+
242
m_bTimeCycleFrozen = value;
243
return true;
244
}
245
246
bool CWeatherSA::ResetTimerCycle() noexcept
247
248
- SetTimerCycle(0);
249
- m_bTimeCycleFrozen = false;
250
- return true;
+ return SetTimerCycle(false);
251
0 commit comments