From 58decac93576ecc9d4b8a6caa61e9bef31dbff9d Mon Sep 17 00:00:00 2001 From: aldebaran27 <59331661+aldebaran27@users.noreply.github.com> Date: Fri, 1 Jul 2022 17:06:46 -0600 Subject: [PATCH] Increase DEFAULT_MAX_PADS to 8 for ODROIDGO2, since that impacts the RG351[X] consoles. The RG351[X] have a USB host controller and can have an arbitrary number of USB gamepads. (#14122) --- input/input_driver.h | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/input/input_driver.h b/input/input_driver.h index cc91d12af2..acbd4e3c78 100644 --- a/input/input_driver.h +++ b/input/input_driver.h @@ -77,7 +77,7 @@ #elif defined(GEKKO) || defined(HW_RVL) #define DEFAULT_MAX_PADS 4 #elif defined(HAVE_ODROIDGO2) -#define DEFAULT_MAX_PADS 1 +#define DEFAULT_MAX_PADS 8 #elif defined(__linux__) || (defined(BSD) && !defined(__MACH__)) #define DEFAULT_MAX_PADS 8 #elif defined(__QNX__)