diff options
author | liamwhite <liamwhite@users.noreply.github.com> | 2023-05-08 17:29:33 -0400 |
---|---|---|
committer | GitHub <noreply@github.com> | 2023-05-08 17:29:33 -0400 |
commit | 15ec8d3e44ca93365ae709166516e6678f8fe52f (patch) | |
tree | a221a81d8b7c65e4e6c47558122358d288ae32ea | |
parent | b70a205a961effe644f2c9c48f8874e1c965276e (diff) | |
parent | a4362765a606564b36d8aa9ebef38440f14aa465 (diff) |
Merge pull request #10205 from jbeich/freebsd
qt_common: unbreak build on BSDs
-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 |