diff options
author | James Rowe <jroweboy@gmail.com> | 2016-08-01 23:13:35 +0200 |
---|---|---|
committer | James Rowe <jroweboy@gmail.com> | 2016-11-14 07:50:46 +0100 |
commit | c3ea6f4ddb4aeed9663b5039e9ab11a7fef7c395 (patch) | |
tree | 282996d714b4c104ae0270ba0c505160b05207d0 /src/citra_qt | |
parent | Merge pull request #2171 from jroweboy/fix-mac-build (diff) | |
download | yuzu-c3ea6f4ddb4aeed9663b5039e9ab11a7fef7c395.tar yuzu-c3ea6f4ddb4aeed9663b5039e9ab11a7fef7c395.tar.gz yuzu-c3ea6f4ddb4aeed9663b5039e9ab11a7fef7c395.tar.bz2 yuzu-c3ea6f4ddb4aeed9663b5039e9ab11a7fef7c395.tar.lz yuzu-c3ea6f4ddb4aeed9663b5039e9ab11a7fef7c395.tar.xz yuzu-c3ea6f4ddb4aeed9663b5039e9ab11a7fef7c395.tar.zst yuzu-c3ea6f4ddb4aeed9663b5039e9ab11a7fef7c395.zip |
Diffstat (limited to 'src/citra_qt')
-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 b904fec16..99cc3f096 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(); |