Fixes an issue where sceHttp inited states didn't get reset when changing games.

This commit is contained in:
ANR2ME 2023-09-03 07:42:13 +07:00 committed by Henrik Rydgård
parent e6aa667eea
commit b5dcc86a8e

View file

@ -310,6 +310,9 @@ void __HttpInit() {
void __HttpShutdown() {
std::lock_guard<std::mutex> guard(httpLock);
httpInited = false;
httpsInited = false;
httpCacheInited = false;
httpObjects.clear();
}