summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorGravatar liamwhite2023-05-08 17:29:33 -0400
committerGravatar GitHub2023-05-08 17:29:33 -0400
commit15ec8d3e44ca93365ae709166516e6678f8fe52f (patch)
treea221a81d8b7c65e4e6c47558122358d288ae32ea
parentMerge pull request #10075 from Kelebek1/silence_nifm_spam (diff)
parentqt_common: consistently ifdef QPlatform after cbd79df23375 (diff)
downloadyuzu-15ec8d3e44ca93365ae709166516e6678f8fe52f.tar.gz
yuzu-15ec8d3e44ca93365ae709166516e6678f8fe52f.tar.xz
yuzu-15ec8d3e44ca93365ae709166516e6678f8fe52f.zip
Merge pull request #10205 from jbeich/freebsd
qt_common: unbreak build on BSDs
-rw-r--r--src/yuzu/qt_common.cpp2
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