mirror of
https://github.com/hrydgard/ppsspp.git
synced 2025-04-02 11:01:50 -04:00
Avoid using hleLog during a Shutdown
This commit is contained in:
parent
804dd07c93
commit
7083342046
1 changed files with 3 additions and 4 deletions
|
@ -94,14 +94,13 @@ void __NetAdhocShutdown() {
|
|||
}
|
||||
// Checks to avoid confusing logspam
|
||||
if (netAdhocMatchingInited) {
|
||||
sceNetAdhocMatchingTerm();
|
||||
NetAdhocMatching_Term();
|
||||
}
|
||||
if (netAdhocctlInited) {
|
||||
sceNetAdhocctlTerm();
|
||||
NetAdhocctl_Term();
|
||||
}
|
||||
if (netAdhocInited) {
|
||||
// Should not really call HLE funcs from shutdown, but we need to cleanup
|
||||
sceNetAdhocTerm();
|
||||
NetAdhoc_Term();
|
||||
}
|
||||
if (dummyThreadHackAddr) {
|
||||
kernelMemory.Free(dummyThreadHackAddr);
|
||||
|
|
Loading…
Add table
Reference in a new issue