From b989292c7cfa10d7cbb71b4e03f64dd406ff455a Mon Sep 17 00:00:00 2001 From: The Dax Date: Thu, 20 Jun 2013 03:20:10 -0400 Subject: [PATCH] Fix typo in __UpdateAdhocctlHandlers and remove stray carriage return. --- Core/HLE/sceNet.cpp | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) 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); } }