early-access version 2179

This commit is contained in:
pineappleEA
2021-11-03 02:00:07 +01:00
parent 0d005353e8
commit 480ce685ff
21 changed files with 1283 additions and 291 deletions

View File

@@ -87,7 +87,7 @@ ResultVal<Kernel::KPort*> ServiceManager::GetServicePort(const std::string& name
auto handler = it->second;
port->GetServerPort().SetSessionHandler(std::move(handler));
return MakeResult(port);
return port;
}
/**
@@ -165,7 +165,7 @@ ResultVal<Kernel::KClientSession*> SM::GetServiceImpl(Kernel::HLERequestContext&
LOG_DEBUG(Service_SM, "called service={} -> session={}", name, session->GetId());
return MakeResult(session);
return session;
}
void SM::RegisterService(Kernel::HLERequestContext& ctx) {