Browse Source

f

pull/2810/head
JPikachu 5 months ago
committed by crueter
parent
commit
11141c9572
  1. 5
      src/core/hle/service/ldn/client_process_monitor.cpp

5
src/core/hle/service/ldn/client_process_monitor.cpp

@ -11,7 +11,7 @@ namespace Service::LDN {
IClientProcessMonitor::IClientProcessMonitor(Core::System& system_)
: ServiceFramework{system_, "IClientProcessMonitor"} {
static const FunctionInfo functions[] = {
{0, &IClientProcessMonitor::RegisterClient, "RegisterClient"},
{0, C<&IClientProcessMonitor::RegisterClient>, "RegisterClient"},
};
RegisterHandlers(functions);
}
@ -19,8 +19,7 @@ IClientProcessMonitor::IClientProcessMonitor(Core::System& system_)
IClientProcessMonitor::~IClientProcessMonitor() = default;
Result IClientProcessMonitor::RegisterClient(Handle process_handle, u64 pid_placeholder) {
LOG_WARNING(Service_LDN,
"(STUBBED) called, process_handle=0x{:08X}, pid_placeholder=0x{:016X}",
LOG_WARNING(Service_LDN, "(STUBBED) called, process_handle={}, pid_placeholder={}",
process_handle, pid_placeholder);
R_SUCCEED();

Loading…
Cancel
Save