summaryrefslogtreecommitdiffstats
path: root/src/core/hle/service/service.h
diff options
context:
space:
mode:
authorbunnei <bunneidev@gmail.com>2021-07-01 03:06:47 +0200
committerbunnei <bunneidev@gmail.com>2021-07-21 03:54:55 +0200
commit7bd020e0307c6a870707440f99bf6bb8b513306f (patch)
treef862958e6f47b0f8b737ddc16bdcfdf5be53e345 /src/core/hle/service/service.h
parenthle: kernel: k_process: Close the handle table on shutdown. (diff)
downloadyuzu-7bd020e0307c6a870707440f99bf6bb8b513306f.tar
yuzu-7bd020e0307c6a870707440f99bf6bb8b513306f.tar.gz
yuzu-7bd020e0307c6a870707440f99bf6bb8b513306f.tar.bz2
yuzu-7bd020e0307c6a870707440f99bf6bb8b513306f.tar.lz
yuzu-7bd020e0307c6a870707440f99bf6bb8b513306f.tar.xz
yuzu-7bd020e0307c6a870707440f99bf6bb8b513306f.tar.zst
yuzu-7bd020e0307c6a870707440f99bf6bb8b513306f.zip
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:
/// Flag to store if a port was already create/installed to detect multiple install attempts,
/// which is not supported.
- bool port_installed = false;
+ bool service_registered = false;
/// Function used to safely up-cast pointers to the derived class before invoking a handler.
InvokerFn* handler_invoker;