From 934b2d8842f09a8df827cd4fd5130124788b4288 Mon Sep 17 00:00:00 2001 From: bunnei Date: Mon, 10 May 2021 15:59:19 -0700 Subject: hle: service: sm: Improve Initialize implementation. --- src/core/hle/service/sm/sm.cpp | 2 ++ 1 file changed, 2 insertions(+) (limited to 'src/core/hle/service/sm/sm.cpp') diff --git a/src/core/hle/service/sm/sm.cpp b/src/core/hle/service/sm/sm.cpp index 568effbc9..7bd571880 100644 --- a/src/core/hle/service/sm/sm.cpp +++ b/src/core/hle/service/sm/sm.cpp @@ -107,6 +107,8 @@ SM::~SM() = default; void SM::Initialize(Kernel::HLERequestContext& ctx) { LOG_DEBUG(Service_SM, "called"); + is_initialized = true; + IPC::ResponseBuilder rb{ctx, 2}; rb.Push(RESULT_SUCCESS); } -- cgit v1.2.3