summaryrefslogtreecommitdiff
path: root/src/core/hle/service/service.h
diff options
context:
space:
mode:
authorGravatar bunnei2021-06-30 18:06:47 -0700
committerGravatar bunnei2021-07-20 18:54:55 -0700
commit7bd020e0307c6a870707440f99bf6bb8b513306f (patch)
treef862958e6f47b0f8b737ddc16bdcfdf5be53e345 /src/core/hle/service/service.h
parenthle: kernel: k_process: Close the handle table on shutdown. (diff)
downloadyuzu-7bd020e0307c6a870707440f99bf6bb8b513306f.tar.gz
yuzu-7bd020e0307c6a870707440f99bf6bb8b513306f.tar.xz
yuzu-7bd020e0307c6a870707440f99bf6bb8b513306f.zip
hle: service: sm: Refactor to better manage ports.
Diffstat (limited to 'src/core/hle/service/service.h')
-rw-r--r--src/core/hle/service/service.h2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/core/hle/service/service.h b/src/core/hle/service/service.h
index 632ce9252..c9d6b879d 100644
--- a/src/core/hle/service/service.h
+++ b/src/core/hle/service/service.h
@@ -125,7 +125,7 @@ private:
125 125
126 /// Flag to store if a port was already create/installed to detect multiple install attempts, 126 /// Flag to store if a port was already create/installed to detect multiple install attempts,
127 /// which is not supported. 127 /// which is not supported.
128 bool port_installed = false; 128 bool service_registered = false;
129 129
130 /// Function used to safely up-cast pointers to the derived class before invoking a handler. 130 /// Function used to safely up-cast pointers to the derived class before invoking a handler.
131 InvokerFn* handler_invoker; 131 InvokerFn* handler_invoker;