EmuThread: refactor

This commit is contained in:
Liam 2022-12-17 14:34:03 -05:00
parent db106151d7
commit c11dff8639
6 changed files with 64 additions and 172 deletions

View file

@ -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;