Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

[Http] Implement sceHttp library #18003

Closed
wants to merge 11 commits into from
Prev Previous commit
Next Next commit
Fixes an issue where sceHttp inited states didn't get reset when chan…
…ging games.
  • Loading branch information
anr2me committed Dec 20, 2023
commit 7467323a8c29cca5f8ff8d67b29cbd4e16dd1ccc
3 changes: 3 additions & 0 deletions Core/HLE/sceHttp.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -313,6 +313,9 @@ void __HttpInit() {

void __HttpShutdown() {
std::lock_guard<std::mutex> guard(httpLock);
httpInited = false;
httpsInited = false;
httpCacheInited = false;
httpObjects.clear();
}

Expand Down