diff options
Diffstat (limited to 'src/core/hle/service')
| -rw-r--r-- | src/core/hle/service/sm/sm_controller.cpp | 5 | 
1 files changed, 3 insertions, 2 deletions
| diff --git a/src/core/hle/service/sm/sm_controller.cpp b/src/core/hle/service/sm/sm_controller.cpp index 2a4bd64ab..273f79568 100644 --- a/src/core/hle/service/sm/sm_controller.cpp +++ b/src/core/hle/service/sm/sm_controller.cpp @@ -15,9 +15,10 @@  namespace Service::SM {  void Controller::ConvertCurrentObjectToDomain(Kernel::HLERequestContext& ctx) { -    ASSERT_MSG(!ctx.Session()->IsDomain(), "Session is already a domain"); +    ASSERT_MSG(!ctx.Session()->GetSessionRequestManager()->IsDomain(), +               "Session is already a domain");      LOG_DEBUG(Service, "called, server_session={}", ctx.Session()->GetId()); -    ctx.Session()->ConvertToDomain(); +    ctx.Session()->GetSessionRequestManager()->ConvertToDomainOnRequestEnd();      IPC::ResponseBuilder rb{ctx, 3};      rb.Push(ResultSuccess); | 
