diff options
author | Morph <39850852+Morph1984@users.noreply.github.com> | 2021-10-15 00:16:45 +0200 |
---|---|---|
committer | Morph <39850852+Morph1984@users.noreply.github.com> | 2021-10-15 23:35:34 +0200 |
commit | 5c6ca597c5d0828fc76da7bc800d0e76a16ea5e9 (patch) | |
tree | f03cf5293b06159cfc9325ee4527a4ea15685c25 | |
parent | yuzu: Construct system in GMainWindow (diff) | |
download | yuzu-5c6ca597c5d0828fc76da7bc800d0e76a16ea5e9.tar yuzu-5c6ca597c5d0828fc76da7bc800d0e76a16ea5e9.tar.gz yuzu-5c6ca597c5d0828fc76da7bc800d0e76a16ea5e9.tar.bz2 yuzu-5c6ca597c5d0828fc76da7bc800d0e76a16ea5e9.tar.lz yuzu-5c6ca597c5d0828fc76da7bc800d0e76a16ea5e9.tar.xz yuzu-5c6ca597c5d0828fc76da7bc800d0e76a16ea5e9.tar.zst yuzu-5c6ca597c5d0828fc76da7bc800d0e76a16ea5e9.zip |
Diffstat (limited to '')
-rw-r--r-- | src/yuzu/bootmanager.h | 6 |
1 files changed, 5 insertions, 1 deletions
diff --git a/src/yuzu/bootmanager.h b/src/yuzu/bootmanager.h index 9fc4116e6..e6a0666e9 100644 --- a/src/yuzu/bootmanager.h +++ b/src/yuzu/bootmanager.h @@ -16,7 +16,6 @@ #include <QWindow> #include "common/thread.h" -#include "core/core.h" #include "core/frontend/emu_window.h" class GRenderWindow; @@ -24,6 +23,11 @@ class GMainWindow; class QKeyEvent; class QStringList; +namespace Core { +enum class SystemResultStatus : u32; +class System; +} // namespace Core + namespace InputCommon { class InputSubsystem; } |