Achievements: Remove unused NeedsIdleUpdate()

This commit is contained in:
Stenzek 2024-12-19 12:46:59 +10:00
parent 2f5bdc9651
commit 31c1cfa650
No known key found for this signature in database
2 changed files with 0 additions and 12 deletions

View File

@ -828,15 +828,6 @@ void Achievements::IdleUpdate()
rc_client_idle(s_state.client);
}
bool Achievements::NeedsIdleUpdate()
{
if (!IsActive())
return false;
const auto lock = GetLock();
return (s_state.http_downloader && s_state.http_downloader->HasAnyRequests());
}
void Achievements::FrameUpdate()
{
if (!IsActive())

View File

@ -58,9 +58,6 @@ void FrameUpdate();
/// Called when the system is paused, because FrameUpdate() won't be getting called.
void IdleUpdate();
/// Returns true if idle updates are necessary (e.g. outstanding requests).
bool NeedsIdleUpdate();
/// Saves/loads state.
bool DoState(StateWrapper& sw);