From b5dcc86a8ec37352be403c0276ef9c118191172f Mon Sep 17 00:00:00 2001 From: ANR2ME Date: Sun, 3 Sep 2023 07:42:13 +0700 Subject: [PATCH] Fixes an issue where sceHttp inited states didn't get reset when changing games. --- Core/HLE/sceHttp.cpp | 3 +++ 1 file changed, 3 insertions(+) diff --git a/Core/HLE/sceHttp.cpp b/Core/HLE/sceHttp.cpp index 1cfeabe946..0001cbb233 100644 --- a/Core/HLE/sceHttp.cpp +++ b/Core/HLE/sceHttp.cpp @@ -310,6 +310,9 @@ void __HttpInit() { void __HttpShutdown() { std::lock_guard guard(httpLock); + httpInited = false; + httpsInited = false; + httpCacheInited = false; httpObjects.clear(); }