mirror of
https://github.com/hrydgard/ppsspp.git
synced 2025-04-02 11:01:50 -04:00
Net: don't double-delete thread on shutdown.
Prevents spurious logging / reporting.
This commit is contained in:
parent
337f27d0d9
commit
7b217af59e
1 changed files with 3 additions and 0 deletions
|
@ -82,6 +82,9 @@ void __NetAdhocShutdown() {
|
|||
sceNetAdhocctlTerm();
|
||||
}
|
||||
if (netAdhocInited) {
|
||||
// Should not really call HLE funcs from shutdown.
|
||||
// Prevent attempting to delete the thread, already deleted by shutdown.
|
||||
threadAdhocID = 0;
|
||||
sceNetAdhocTerm();
|
||||
}
|
||||
if (dummyThreadHackAddr) {
|
||||
|
|
Loading…
Add table
Reference in a new issue