diff options
author | Morph <39850852+Morph1984@users.noreply.github.com> | 2021-10-14 18:14:40 -0400 |
---|---|---|
committer | Morph <39850852+Morph1984@users.noreply.github.com> | 2021-10-15 17:34:49 -0400 |
commit | 17763a44d5426f7a3e52d6d4aebc26afb1d0ce65 (patch) | |
tree | 71f31a3363f0412514277890275c973801583fec /src/yuzu/bootmanager.h | |
parent | 218ebc1fe869fdfcb9bc2aafb175f187a3401360 (diff) |
core: Move ResultStatus outside of System
Allows it to be a forward declaration in other header files.
Diffstat (limited to 'src/yuzu/bootmanager.h')
-rw-r--r-- | src/yuzu/bootmanager.h | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/yuzu/bootmanager.h b/src/yuzu/bootmanager.h index 8d7ab8c2e..9fc4116e6 100644 --- a/src/yuzu/bootmanager.h +++ b/src/yuzu/bootmanager.h @@ -123,7 +123,7 @@ signals: */ void DebugModeLeft(); - void ErrorThrown(Core::System::ResultStatus, std::string); + void ErrorThrown(Core::SystemResultStatus, std::string); void LoadProgress(VideoCore::LoadCallbackStage stage, std::size_t value, std::size_t total); }; |