diff options
author | bunnei <bunneidev@gmail.com> | 2016-11-15 20:07:23 -0500 |
---|---|---|
committer | GitHub <noreply@github.com> | 2016-11-15 20:07:23 -0500 |
commit | fb13bfe693e9536df700b675fef3affe09622fdd (patch) | |
tree | 133bc7a610f8ae94a5381f8c8aaba6a6050d7ac1 /src/citra_qt/main.cpp | |
parent | 5a31552764dc8970253e642f4b829a8b785375c6 (diff) | |
parent | c3ea6f4ddb4aeed9663b5039e9ab11a7fef7c395 (diff) |
Merge pull request #2172 from jroweboy/fix-mingw
Fix mingw compilation support
Diffstat (limited to 'src/citra_qt/main.cpp')
-rw-r--r-- | src/citra_qt/main.cpp | 4 |
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(); |