summaryrefslogtreecommitdiffstats
path: root/src/core/core.h
diff options
context:
space:
mode:
authorliamwhite <liamwhite@users.noreply.github.com>2022-12-20 15:10:41 +0100
committerGitHub <noreply@github.com>2022-12-20 15:10:41 +0100
commit1b11e0f0d3209603e67b26f3ef22f1d1a493bbdc (patch)
treee5e99d292065c14dc92605070ee1086675c046a0 /src/core/core.h
parentMerge pull request #9482 from liamwhite/vkbump (diff)
parentqt: use _exit instead of exit on SIGINT (diff)
downloadyuzu-1b11e0f0d3209603e67b26f3ef22f1d1a493bbdc.tar
yuzu-1b11e0f0d3209603e67b26f3ef22f1d1a493bbdc.tar.gz
yuzu-1b11e0f0d3209603e67b26f3ef22f1d1a493bbdc.tar.bz2
yuzu-1b11e0f0d3209603e67b26f3ef22f1d1a493bbdc.tar.lz
yuzu-1b11e0f0d3209603e67b26f3ef22f1d1a493bbdc.tar.xz
yuzu-1b11e0f0d3209603e67b26f3ef22f1d1a493bbdc.tar.zst
yuzu-1b11e0f0d3209603e67b26f3ef22f1d1a493bbdc.zip
Diffstat (limited to 'src/core/core.h')
-rw-r--r--src/core/core.h4
1 files changed, 2 insertions, 2 deletions
diff --git a/src/core/core.h b/src/core/core.h
index 4ebedffd9..fb5cda2f5 100644
--- a/src/core/core.h
+++ b/src/core/core.h
@@ -152,13 +152,13 @@ public:
* Run the OS and Application
* This function will start emulation and run the relevant devices
*/
- [[nodiscard]] SystemResultStatus Run();
+ void Run();
/**
* Pause the OS and Application
* This function will pause emulation and stop the relevant devices
*/
- [[nodiscard]] SystemResultStatus Pause();
+ void Pause();
/// Check if the core is currently paused.
[[nodiscard]] bool IsPaused() const;