early-access version 3915

This commit is contained in:
pineappleEA
2023-10-08 19:39:13 +02:00
parent 9238ae5660
commit ea1c1d9b88
6 changed files with 10 additions and 70 deletions

View File

@@ -546,11 +546,13 @@ void IGeneralService::IsAnyInternetRequestAccepted(HLERequestContext& ctx) {
}
void IGeneralService::IsAnyForegroundRequestAccepted(HLERequestContext& ctx) {
LOG_ERROR(Service_NIFM, "(STUBBED) called");
const bool is_accepted{};
LOG_WARNING(Service_NIFM, "(STUBBED) called, is_accepted={}", is_accepted);
IPC::ResponseBuilder rb{ctx, 3};
rb.Push(ResultSuccess);
rb.Push<u8>(0);
rb.Push<u8>(is_accepted);
}
IGeneralService::IGeneralService(Core::System& system_)