diff options
| author | 2021-06-30 18:06:47 -0700 | |
|---|---|---|
| committer | 2021-07-20 18:54:55 -0700 | |
| commit | 7bd020e0307c6a870707440f99bf6bb8b513306f (patch) | |
| tree | f862958e6f47b0f8b737ddc16bdcfdf5be53e345 /src/core/hle/service/service.h | |
| parent | hle: kernel: k_process: Close the handle table on shutdown. (diff) | |
| download | yuzu-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.h | 2 |
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; |