diff --git a/Core/HLE/sceNet.cpp b/Core/HLE/sceNet.cpp index d0c7821c59..2e31cd71fe 100644 --- a/Core/HLE/sceNet.cpp +++ b/Core/HLE/sceNet.cpp @@ -99,7 +99,6 @@ struct ApctlHandler { static std::map apctlHandlers; - void __NetInit() { netInited = false; netAdhocInited = false; @@ -120,7 +119,7 @@ void __UpdateAdhocctlHandlers(int flag, int error) { for(std::map::iterator it = adhocctlHandlers.begin(); it != adhocctlHandlers.end(); ++it) { args[2] = it->second.argument; - __KernelDirectMipsCall(it->second.entryPoint, NULL, args, 5, true); + __KernelDirectMipsCall(it->second.entryPoint, NULL, args, 3, true); } }