From bdd756a0905e1d497db2d6fd31daf4f8635d405d Mon Sep 17 00:00:00 2001 From: georgemoralis Date: Tue, 31 Oct 2023 09:04:08 +0200 Subject: [PATCH] log scePadOpen --- src/core/hle/libraries/libpad/pad.cpp | 1 + 1 file changed, 1 insertion(+) diff --git a/src/core/hle/libraries/libpad/pad.cpp b/src/core/hle/libraries/libpad/pad.cpp index 3899498c..1721413a 100644 --- a/src/core/hle/libraries/libpad/pad.cpp +++ b/src/core/hle/libraries/libpad/pad.cpp @@ -16,6 +16,7 @@ int PS4_SYSV_ABI scePadInit() { return SCE_OK; } int PS4_SYSV_ABI scePadOpen(Emulator::HLE::Libraries::LibUserService::SceUserServiceUserId userId, s32 type, s32 index, const ScePadOpenParam* pParam) { + LOG_INFO_IF(log_file_pad, "scePadOpen userid = {} type = {} index = {}\n", userId, type, index); return 1; // dummy }