summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorMorph <39850852+Morph1984@users.noreply.github.com>2021-10-15 00:16:45 +0200
committerMorph <39850852+Morph1984@users.noreply.github.com>2021-10-15 23:35:34 +0200
commit5c6ca597c5d0828fc76da7bc800d0e76a16ea5e9 (patch)
treef03cf5293b06159cfc9325ee4527a4ea15685c25
parentyuzu: Construct system in GMainWindow (diff)
downloadyuzu-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
-rw-r--r--src/yuzu/bootmanager.h6
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;
}