summaryrefslogtreecommitdiffstats
path: root/src/core/core.h
diff options
context:
space:
mode:
authorLiam <byteslice@airmail.cc>2022-12-17 20:34:03 +0100
committerLiam <byteslice@airmail.cc>2022-12-17 22:26:24 +0100
commitd3123079e887710580b622b444a642ae298ddec0 (patch)
tree2bad10cc78ddb74f851a572dc69704154ea63b69 /src/core/core.h
parentMerge pull request #7450 from FernandoS27/ndc-vulkan (diff)
downloadyuzu-d3123079e887710580b622b444a642ae298ddec0.tar
yuzu-d3123079e887710580b622b444a642ae298ddec0.tar.gz
yuzu-d3123079e887710580b622b444a642ae298ddec0.tar.bz2
yuzu-d3123079e887710580b622b444a642ae298ddec0.tar.lz
yuzu-d3123079e887710580b622b444a642ae298ddec0.tar.xz
yuzu-d3123079e887710580b622b444a642ae298ddec0.tar.zst
yuzu-d3123079e887710580b622b444a642ae298ddec0.zip
Diffstat (limited to '')
-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;