summaryrefslogtreecommitdiffstats
path: root/src/citra_qt
diff options
context:
space:
mode:
authorbunnei <bunneidev@gmail.com>2016-11-16 02:07:23 +0100
committerGitHub <noreply@github.com>2016-11-16 02:07:23 +0100
commitfb13bfe693e9536df700b675fef3affe09622fdd (patch)
tree133bc7a610f8ae94a5381f8c8aaba6a6050d7ac1 /src/citra_qt
parentMerge pull request #1753 from jroweboy/frame_layouts (diff)
parentAdd mingw compile support (diff)
downloadyuzu-fb13bfe693e9536df700b675fef3affe09622fdd.tar
yuzu-fb13bfe693e9536df700b675fef3affe09622fdd.tar.gz
yuzu-fb13bfe693e9536df700b675fef3affe09622fdd.tar.bz2
yuzu-fb13bfe693e9536df700b675fef3affe09622fdd.tar.lz
yuzu-fb13bfe693e9536df700b675fef3affe09622fdd.tar.xz
yuzu-fb13bfe693e9536df700b675fef3affe09622fdd.tar.zst
yuzu-fb13bfe693e9536df700b675fef3affe09622fdd.zip
Diffstat (limited to 'src/citra_qt')
-rw-r--r--src/citra_qt/main.cpp4
1 files changed, 4 insertions, 0 deletions
diff --git a/src/citra_qt/main.cpp b/src/citra_qt/main.cpp
index bcf2a706f..0bf9f48d6 100644
--- a/src/citra_qt/main.cpp
+++ b/src/citra_qt/main.cpp
@@ -48,6 +48,10 @@
#include "qhexedit.h"
#include "video_core/video_core.h"
+#ifdef QT_STATICPLUGIN
+Q_IMPORT_PLUGIN(QWindowsIntegrationPlugin);
+#endif
+
GMainWindow::GMainWindow() : config(new Config()), emu_thread(nullptr) {
Pica::g_debug_context = Pica::DebugContext::Construct();