Compare commits

...

3 Commits

Author SHA1 Message Date
Levi Behunin
1b5a748a8e gc_adapter: fix libusb import on GCC11.2 2022-05-02 01:22:38 -06:00
Levi Behunin
3e18873a85 Update gc_adapter.cpp
Just to silence an intermittent error.
GCC11.2 complains cannot find 'libusb.h' during a fresh build.
2022-05-02 00:57:22 -06:00
Levi Behunin
e1513e797b gcAdapter: fix libsub import 2022-05-01 21:57:30 -06:00

View File

@@ -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"