| 536 | } |
| 537 | |
| 538 | void Achievements::DestroyClient(rc_client_t** client, std::unique_ptr<HTTPDownloader>* http) |
| 539 | { |
| 540 | (*http)->WaitForAllRequests(); |
| 541 | |
| 542 | rc_client_destroy(*client); |
| 543 | *client = nullptr; |
| 544 | |
| 545 | http->reset(); |
| 546 | } |
| 547 | |
| 548 | void Achievements::UpdateNotificationPosition() |
| 549 | { |
nothing calls this directly
no test coverage detected