diff options
Diffstat (limited to 'src/core/core.h')
| -rw-r--r-- | src/core/core.h | 4 |
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: | |||
| 152 | * Run the OS and Application | 152 | * Run the OS and Application |
| 153 | * This function will start emulation and run the relevant devices | 153 | * This function will start emulation and run the relevant devices |
| 154 | */ | 154 | */ |
| 155 | [[nodiscard]] SystemResultStatus Run(); | 155 | void Run(); |
| 156 | 156 | ||
| 157 | /** | 157 | /** |
| 158 | * Pause the OS and Application | 158 | * Pause the OS and Application |
| 159 | * This function will pause emulation and stop the relevant devices | 159 | * This function will pause emulation and stop the relevant devices |
| 160 | */ | 160 | */ |
| 161 | [[nodiscard]] SystemResultStatus Pause(); | 161 | void Pause(); |
| 162 | 162 | ||
| 163 | /// Check if the core is currently paused. | 163 | /// Check if the core is currently paused. |
| 164 | [[nodiscard]] bool IsPaused() const; | 164 | [[nodiscard]] bool IsPaused() const; |