Compare commits

...

1 Commits

Author SHA1 Message Date
David Markowitz
82e0a77951 Invert frame rates (use inactive if 0 players in world, not the other way around) 2025-05-14 01:12:23 -07:00

View File

@@ -91,5 +91,5 @@ void PerformanceManager::SelectProfile(LWOMAPID mapID) {
}
uint32_t PerformanceManager::GetServerFrameDelta() {
return UserManager::Instance()->GetUserCount() == 0 ? m_CurrentProfile : m_InactiveProfile;
return UserManager::Instance()->GetUserCount() == 0 ? m_InactiveProfile : m_CurrentProfile;
}