diff options
| author | 2023-05-08 17:29:33 -0400 | |
|---|---|---|
| committer | 2023-05-08 17:29:33 -0400 | |
| commit | 15ec8d3e44ca93365ae709166516e6678f8fe52f (patch) | |
| tree | a221a81d8b7c65e4e6c47558122358d288ae32ea /src | |
| parent | Merge pull request #10075 from Kelebek1/silence_nifm_spam (diff) | |
| parent | qt_common: consistently ifdef QPlatform after cbd79df23375 (diff) | |
| download | yuzu-15ec8d3e44ca93365ae709166516e6678f8fe52f.tar.gz yuzu-15ec8d3e44ca93365ae709166516e6678f8fe52f.tar.xz yuzu-15ec8d3e44ca93365ae709166516e6678f8fe52f.zip | |
Merge pull request #10205 from jbeich/freebsd
qt_common: unbreak build on BSDs
Diffstat (limited to 'src')
| -rw-r--r-- | src/yuzu/qt_common.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/yuzu/qt_common.cpp b/src/yuzu/qt_common.cpp index 5ac9fe310..5d0fd7674 100644 --- a/src/yuzu/qt_common.cpp +++ b/src/yuzu/qt_common.cpp | |||
| @@ -8,7 +8,7 @@ | |||
| 8 | #include "core/frontend/emu_window.h" | 8 | #include "core/frontend/emu_window.h" |
| 9 | #include "yuzu/qt_common.h" | 9 | #include "yuzu/qt_common.h" |
| 10 | 10 | ||
| 11 | #ifdef __linux__ | 11 | #if !defined(WIN32) && !defined(__APPLE__) |
| 12 | #include <qpa/qplatformnativeinterface.h> | 12 | #include <qpa/qplatformnativeinterface.h> |
| 13 | #endif | 13 | #endif |
| 14 | 14 | ||