From 6d28737856f5bc6f39694f076abd83ef6f8e9ce0 Mon Sep 17 00:00:00 2001 From: PTRCoder Date: Fri, 23 Aug 2024 00:48:51 +0200 Subject: [PATCH] Fixed missing void return type --- src/core/hle/service/nwm/nwm_inf.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/core/hle/service/nwm/nwm_inf.cpp b/src/core/hle/service/nwm/nwm_inf.cpp index b797034cf..bae4f7770 100644 --- a/src/core/hle/service/nwm/nwm_inf.cpp +++ b/src/core/hle/service/nwm/nwm_inf.cpp @@ -10,7 +10,7 @@ SERIALIZE_EXPORT_IMPL(Service::NWM::NWM_INF) namespace Service::NWM { -NWM_INF::RecvBeaconBroadcastData(Kernel::HLERequestContext& ctx) { +void NWM_INF::RecvBeaconBroadcastData(Kernel::HLERequestContext& ctx) { // TODO(PTR) Update implementation to cover differences between NWM_INF and NWM_UDS auto nwm_uds = Core::System::GetInstance().ServiceManager().GetService("nwm::UDS"); nwm_uds->HandleSyncRequest(ctx);