aboutsummaryrefslogtreecommitdiff
path: root/src/citra_qt/bootmanager.cpp
diff options
context:
space:
mode:
authorYuri Kunde Schlesner <yuriks@yuriks.net>2015-09-11 18:17:24 -0300
committerYuri Kunde Schlesner <yuriks@yuriks.net>2015-09-11 18:17:24 -0300
commit48f9bef75d6b0936c704e852223991e209ec8319 (patch)
tree876fba83ba8f265edb16704b8c261112270150d4 /src/citra_qt/bootmanager.cpp
parentece0f050a98cfe97aa205f1f908226ee6813a52d (diff)
parentabe5bb4019f84b5bcb43c581f1258b3a44f1f2c7 (diff)
Merge pull request #1142 from lioncash/hdrqt
citra_qt: Reorganize headers
Diffstat (limited to 'src/citra_qt/bootmanager.cpp')
-rw-r--r--src/citra_qt/bootmanager.cpp14
1 files changed, 5 insertions, 9 deletions
diff --git a/src/citra_qt/bootmanager.cpp b/src/citra_qt/bootmanager.cpp
index 9aec16506..610707411 100644
--- a/src/citra_qt/bootmanager.cpp
+++ b/src/citra_qt/bootmanager.cpp
@@ -1,6 +1,6 @@
+#include <QApplication>
#include <QHBoxLayout>
#include <QKeyEvent>
-#include <QApplication>
#if QT_VERSION >= QT_VERSION_CHECK(5, 0, 0)
// Required for screen DPI information
@@ -8,23 +8,19 @@
#include <QWindow>
#endif
-#include "bootmanager.h"
-#include "main.h"
+#include "citra_qt/bootmanager.h"
-#include "common/string_util.h"
-#include "common/scm_rev.h"
#include "common/key_map.h"
#include "common/microprofile.h"
+#include "common/scm_rev.h"
+#include "common/string_util.h"
#include "core/core.h"
#include "core/settings.h"
#include "core/system.h"
-#include "video_core/debug_utils/debug_utils.h"
-
#include "video_core/video_core.h"
-
-#include "citra_qt/version.h"
+#include "video_core/debug_utils/debug_utils.h"
#define APP_NAME "citra"
#define APP_VERSION "0.1-" VERSION