summaryrefslogtreecommitdiffstats
path: root/src/citra_qt/main.cpp
diff options
context:
space:
mode:
authorbunnei <bunneidev@gmail.com>2015-01-06 18:43:08 +0100
committerbunnei <bunneidev@gmail.com>2015-01-06 18:43:08 +0100
commit0bf5a0bfc47cebb64dc2740c475a631d6fb13a2f (patch)
tree3a173741994c239c4cd41727868ef7676acb26e3 /src/citra_qt/main.cpp
parentMerge pull request #417 from kevinhartman/exclusive-tag-fix (diff)
parentcitra-qt: Renamed all .hxx headers to .h (diff)
downloadyuzu-0bf5a0bfc47cebb64dc2740c475a631d6fb13a2f.tar
yuzu-0bf5a0bfc47cebb64dc2740c475a631d6fb13a2f.tar.gz
yuzu-0bf5a0bfc47cebb64dc2740c475a631d6fb13a2f.tar.bz2
yuzu-0bf5a0bfc47cebb64dc2740c475a631d6fb13a2f.tar.lz
yuzu-0bf5a0bfc47cebb64dc2740c475a631d6fb13a2f.tar.xz
yuzu-0bf5a0bfc47cebb64dc2740c475a631d6fb13a2f.tar.zst
yuzu-0bf5a0bfc47cebb64dc2740c475a631d6fb13a2f.zip
Diffstat (limited to 'src/citra_qt/main.cpp')
-rw-r--r--src/citra_qt/main.cpp22
1 files changed, 11 insertions, 11 deletions
diff --git a/src/citra_qt/main.cpp b/src/citra_qt/main.cpp
index 64e389f25..c6671bef1 100644
--- a/src/citra_qt/main.cpp
+++ b/src/citra_qt/main.cpp
@@ -8,7 +8,7 @@
#include <QDesktopWidget>
#include <QFileDialog>
#include "qhexedit.h"
-#include "main.hxx"
+#include "main.h"
#include "common/common.h"
#include "common/logging/text_formatter.h"
@@ -22,18 +22,18 @@
#include <unistd.h>
#endif
-#include "bootmanager.hxx"
-#include "hotkeys.hxx"
+#include "bootmanager.h"
+#include "hotkeys.h"
//debugger
-#include "debugger/disassembler.hxx"
-#include "debugger/registers.hxx"
-#include "debugger/callstack.hxx"
-#include "debugger/ramview.hxx"
-#include "debugger/graphics.hxx"
-#include "debugger/graphics_breakpoints.hxx"
-#include "debugger/graphics_cmdlists.hxx"
-#include "debugger/graphics_framebuffer.hxx"
+#include "debugger/disassembler.h"
+#include "debugger/registers.h"
+#include "debugger/callstack.h"
+#include "debugger/ramview.h"
+#include "debugger/graphics.h"
+#include "debugger/graphics_breakpoints.h"
+#include "debugger/graphics_cmdlists.h"
+#include "debugger/graphics_framebuffer.h"
#include "core/settings.h"
#include "core/system.h"