diff options
| author | Narr the Reg <juangerman-13@hotmail.com> | 2024-02-17 17:00:07 -0600 |
|---|---|---|
| committer | GitHub <noreply@github.com> | 2024-02-17 17:00:07 -0600 |
| commit | 53f8383354470d58ab7a6cb5303708d59883adfa (patch) | |
| tree | 66f830fa18e36c599315475670dfd92c5ef73b45 /src/core/hle/kernel/kernel.h | |
| parent | 36108ce2bee37aff0a3beb58c6a1e48193671949 (diff) | |
| parent | af42482565daf646d89a0a3cd8001a527ab76621 (diff) | |
Merge pull request #13017 from liamwhite/suspension
kernel: add and enable system suspend type
Diffstat (limited to 'src/core/hle/kernel/kernel.h')
| -rw-r--r-- | src/core/hle/kernel/kernel.h | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/src/core/hle/kernel/kernel.h b/src/core/hle/kernel/kernel.h index 8ea5bed1c..57182c0c8 100644 --- a/src/core/hle/kernel/kernel.h +++ b/src/core/hle/kernel/kernel.h @@ -258,8 +258,8 @@ public: /// Gets the shared memory object for HIDBus services. const Kernel::KSharedMemory& GetHidBusSharedMem() const; - /// Suspend/unsuspend application process. - void SuspendApplication(bool suspend); + /// Suspend/unsuspend emulated processes. + void SuspendEmulation(bool suspend); /// Exceptional exit application process. void ExceptionalExitApplication(); |
