From 22ed0bd3a319d2e4e115b1097c3468303aef86de Mon Sep 17 00:00:00 2001 From: Patrick Lawrence Date: Sat, 4 Jul 2026 11:56:24 -0700 Subject: [PATCH] fix Linux build: add missing libusb.h include in RetroFE.cpp --- RetroFE/Source/RetroFE.cpp | 1 + 1 file changed, 1 insertion(+) diff --git a/RetroFE/Source/RetroFE.cpp b/RetroFE/Source/RetroFE.cpp index fc4b277a..2c8bf366 100644 --- a/RetroFE/Source/RetroFE.cpp +++ b/RetroFE/Source/RetroFE.cpp @@ -100,6 +100,7 @@ bool g_isRestrictorCheckDone = false; namespace fs = std::filesystem; #ifdef __linux +#include bool InitializeServoStik() { libusb_context* ctx = NULL;