summaryrefslogtreecommitdiff
path: root/src/core/hle/kernel/kernel.h
diff options
context:
space:
mode:
authorGravatar Narr the Reg2024-02-17 17:00:07 -0600
committerGravatar GitHub2024-02-17 17:00:07 -0600
commit53f8383354470d58ab7a6cb5303708d59883adfa (patch)
tree66f830fa18e36c599315475670dfd92c5ef73b45 /src/core/hle/kernel/kernel.h
parentMerge pull request #13040 from Kelebek1/timezone_shutdown (diff)
parentkernel: add and enable system suspend type (diff)
downloadyuzu-53f8383354470d58ab7a6cb5303708d59883adfa.tar.gz
yuzu-53f8383354470d58ab7a6cb5303708d59883adfa.tar.xz
yuzu-53f8383354470d58ab7a6cb5303708d59883adfa.zip
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.h4
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:
258 /// Gets the shared memory object for HIDBus services. 258 /// Gets the shared memory object for HIDBus services.
259 const Kernel::KSharedMemory& GetHidBusSharedMem() const; 259 const Kernel::KSharedMemory& GetHidBusSharedMem() const;
260 260
261 /// Suspend/unsuspend application process. 261 /// Suspend/unsuspend emulated processes.
262 void SuspendApplication(bool suspend); 262 void SuspendEmulation(bool suspend);
263 263
264 /// Exceptional exit application process. 264 /// Exceptional exit application process.
265 void ExceptionalExitApplication(); 265 void ExceptionalExitApplication();