From dbc8f76b52e178191af276828aa08a36bdcf10c0 Mon Sep 17 00:00:00 2001 From: raven02 Date: Mon, 28 Jul 2014 19:15:28 +0800 Subject: [PATCH] Add sceNpSignalingDestroyCtx() --- rpcs3/Emu/SysCalls/Modules/sceNp.cpp | 7 ++++++- 1 file changed, 6 insertions(+), 1 deletion(-) diff --git a/rpcs3/Emu/SysCalls/Modules/sceNp.cpp b/rpcs3/Emu/SysCalls/Modules/sceNp.cpp index b9348a5f55..6b5bce2a51 100644 --- a/rpcs3/Emu/SysCalls/Modules/sceNp.cpp +++ b/rpcs3/Emu/SysCalls/Modules/sceNp.cpp @@ -2257,13 +2257,17 @@ int sceNpUtilBandwidthTestGetStatus() return CELL_OK; } - int sceNpUtilBandwidthTestAbort() { UNIMPLEMENTED_FUNC(sceNp); return CELL_OK; } +int sceNpSignalingDestroyCtx() +{ + UNIMPLEMENTED_FUNC(sceNp); + return CELL_OK; +} void sceNp_init() { @@ -2632,4 +2636,5 @@ void sceNp_init() sceNp->AddFunc(0xc2ced2b7, sceNpUtilBandwidthTestInitStart); sceNp->AddFunc(0xc880f37d, sceNpUtilBandwidthTestGetStatus); sceNp->AddFunc(0xc99ee313, sceNpUtilBandwidthTestAbort); + sceNp->AddFunc(0xa8cf8451, sceNpSignalingDestroyCtx); }