diff options
author | liamwhite <liamwhite@users.noreply.github.com> | 2023-05-08 23:29:33 +0200 |
---|---|---|
committer | GitHub <noreply@github.com> | 2023-05-08 23:29:33 +0200 |
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 yuzu-15ec8d3e44ca93365ae709166516e6678f8fe52f.tar.gz yuzu-15ec8d3e44ca93365ae709166516e6678f8fe52f.tar.bz2 yuzu-15ec8d3e44ca93365ae709166516e6678f8fe52f.tar.lz yuzu-15ec8d3e44ca93365ae709166516e6678f8fe52f.tar.xz yuzu-15ec8d3e44ca93365ae709166516e6678f8fe52f.tar.zst yuzu-15ec8d3e44ca93365ae709166516e6678f8fe52f.zip |
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 @@ #include "core/frontend/emu_window.h" #include "yuzu/qt_common.h" -#ifdef __linux__ +#if !defined(WIN32) && !defined(__APPLE__) #include <qpa/qplatformnativeinterface.h> #endif |