From 88388f1efc545e866e04ef7733bdeb0fbf244bbf Mon Sep 17 00:00:00 2001 From: Megamouse Date: Fri, 13 Sep 2019 10:21:18 +0200 Subject: [PATCH] sceNpSns: add more logging --- rpcs3/Emu/Cell/Modules/sceNpSns.cpp | 16 ++++++++-------- 1 file changed, 8 insertions(+), 8 deletions(-) diff --git a/rpcs3/Emu/Cell/Modules/sceNpSns.cpp b/rpcs3/Emu/Cell/Modules/sceNpSns.cpp index 3124d0733c..58d3951fab 100644 --- a/rpcs3/Emu/Cell/Modules/sceNpSns.cpp +++ b/rpcs3/Emu/Cell/Modules/sceNpSns.cpp @@ -192,9 +192,9 @@ error_code sceNpSnsFbGetAccessToken(u32 handle, vm::cptr SCE_NP_SNS_FB_HANDLE_SLOT_MAX) { @@ -221,11 +221,11 @@ s32 sceNpSnsFbStreamPublish(u32 handle) return CELL_OK; } -s32 sceNpSnsFbCheckThrottle(vm::ptr r3) +s32 sceNpSnsFbCheckThrottle(vm::ptr arg0) { - UNIMPLEMENTED_FUNC(sceNpSns); + sceNpSns.todo("sceNpSnsFbCheckThrottle(arg0=*0x%x)", arg0); - if (!r3) + if (!arg0) { return SCE_NP_SNS_ERROR_INVALID_ARGUMENT; } @@ -238,9 +238,9 @@ s32 sceNpSnsFbCheckThrottle(vm::ptr r3) return CELL_OK; } -s32 sceNpSnsFbCheckConfig() +s32 sceNpSnsFbCheckConfig(vm::ptr arg0) { - UNIMPLEMENTED_FUNC(sceNpSns); + sceNpSns.todo("sceNpSnsFbCheckConfig(arg0=*0x%x)", arg0); if (!g_fxo->get()->is_initialized) { @@ -252,7 +252,7 @@ s32 sceNpSnsFbCheckConfig() s32 sceNpSnsFbLoadThrottle(u32 handle) { - UNIMPLEMENTED_FUNC(sceNpSns); + sceNpSns.todo("sceNpSnsFbLoadThrottle(handle=%d)", handle); if (handle == SCE_NP_SNS_FB_INVALID_HANDLE || handle > SCE_NP_SNS_FB_HANDLE_SLOT_MAX) {