Fixed missing void return type

This commit is contained in:
PTRCoder 2024-08-23 00:48:51 +02:00
parent 14eb312678
commit 6d28737856

View File

@ -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<Service::NWM::NWM_UDS>("nwm::UDS");
nwm_uds->HandleSyncRequest(ctx);