diff options
author | Morph <39850852+Morph1984@users.noreply.github.com> | 2022-05-02 10:23:39 +0200 |
---|---|---|
committer | GitHub <noreply@github.com> | 2022-05-02 10:23:39 +0200 |
commit | 9398521006e0eaf2a7a9b1f3ec71c65226551a0f (patch) | |
tree | 9fa9e8080c55f9a7cec0eeb3836f2318a1224772 /src/input_common/drivers/gc_adapter.cpp | |
parent | gc_adapter: fix libusb import on GCC11.2 (diff) | |
download | yuzu-9398521006e0eaf2a7a9b1f3ec71c65226551a0f.tar yuzu-9398521006e0eaf2a7a9b1f3ec71c65226551a0f.tar.gz yuzu-9398521006e0eaf2a7a9b1f3ec71c65226551a0f.tar.bz2 yuzu-9398521006e0eaf2a7a9b1f3ec71c65226551a0f.tar.lz yuzu-9398521006e0eaf2a7a9b1f3ec71c65226551a0f.tar.xz yuzu-9398521006e0eaf2a7a9b1f3ec71c65226551a0f.tar.zst yuzu-9398521006e0eaf2a7a9b1f3ec71c65226551a0f.zip |
Diffstat (limited to '')
-rw-r--r-- | src/input_common/drivers/gc_adapter.cpp | 4 |
1 files changed, 0 insertions, 4 deletions
diff --git a/src/input_common/drivers/gc_adapter.cpp b/src/input_common/drivers/gc_adapter.cpp index a2880b9be..27a0ffb0d 100644 --- a/src/input_common/drivers/gc_adapter.cpp +++ b/src/input_common/drivers/gc_adapter.cpp @@ -2,11 +2,7 @@ // 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" |