diff options
| author | 2016-11-15 20:07:23 -0500 | |
|---|---|---|
| committer | 2016-11-15 20:07:23 -0500 | |
| commit | fb13bfe693e9536df700b675fef3affe09622fdd (patch) | |
| tree | 133bc7a610f8ae94a5381f8c8aaba6a6050d7ac1 /src/citra_qt/main.cpp | |
| parent | Merge pull request #1753 from jroweboy/frame_layouts (diff) | |
| parent | Add mingw compile support (diff) | |
| download | yuzu-fb13bfe693e9536df700b675fef3affe09622fdd.tar.gz yuzu-fb13bfe693e9536df700b675fef3affe09622fdd.tar.xz yuzu-fb13bfe693e9536df700b675fef3affe09622fdd.zip | |
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 @@ | |||
| 48 | #include "qhexedit.h" | 48 | #include "qhexedit.h" |
| 49 | #include "video_core/video_core.h" | 49 | #include "video_core/video_core.h" |
| 50 | 50 | ||
| 51 | #ifdef QT_STATICPLUGIN | ||
| 52 | Q_IMPORT_PLUGIN(QWindowsIntegrationPlugin); | ||
| 53 | #endif | ||
| 54 | |||
| 51 | GMainWindow::GMainWindow() : config(new Config()), emu_thread(nullptr) { | 55 | GMainWindow::GMainWindow() : config(new Config()), emu_thread(nullptr) { |
| 52 | Pica::g_debug_context = Pica::DebugContext::Construct(); | 56 | Pica::g_debug_context = Pica::DebugContext::Construct(); |
| 53 | 57 | ||