summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorLevi Behunin <l3ehunin@gmail.com>2022-05-02 09:46:48 +0200
committerGitHub <noreply@github.com>2022-05-02 09:46:48 +0200
commitf72f4377f4cbbe45e5a43bb67c7245737ffa135f (patch)
tree7028b08a6bda7ca34393159f58631804a56e89e6
parentMerge pull request #8293 from Docteh/translate_network (diff)
downloadyuzu-f72f4377f4cbbe45e5a43bb67c7245737ffa135f.tar
yuzu-f72f4377f4cbbe45e5a43bb67c7245737ffa135f.tar.gz
yuzu-f72f4377f4cbbe45e5a43bb67c7245737ffa135f.tar.bz2
yuzu-f72f4377f4cbbe45e5a43bb67c7245737ffa135f.tar.lz
yuzu-f72f4377f4cbbe45e5a43bb67c7245737ffa135f.tar.xz
yuzu-f72f4377f4cbbe45e5a43bb67c7245737ffa135f.tar.zst
yuzu-f72f4377f4cbbe45e5a43bb67c7245737ffa135f.zip
-rw-r--r--src/input_common/drivers/gc_adapter.cpp4
1 files changed, 4 insertions, 0 deletions
diff --git a/src/input_common/drivers/gc_adapter.cpp b/src/input_common/drivers/gc_adapter.cpp
index 27a0ffb0d..a2880b9be 100644
--- a/src/input_common/drivers/gc_adapter.cpp
+++ b/src/input_common/drivers/gc_adapter.cpp
@@ -2,7 +2,11 @@
// SPDX-License-Identifier: GPL-2.0-or-later
#include <fmt/format.h>
+#ifdef _WIN32
#include <libusb.h>
+#else
+#include <libusb-1.0/libusb.h>
+#endif
#include "common/logging/log.h"
#include "common/param_package.h"