# HG changeset patch # User Michael Pavone # Date 1735889558 28800 # Node ID 8675663d498449f2c2492a43d1050d51e91c1bf0 # Parent 6aa3025bbf5fd33a89ec75f2fb48e80f592a3e19 Add controller heuristic for M30 so the BT version works out of the box diff -r 6aa3025bbf5f -r 8675663d4984 controller_info.c --- a/controller_info.c Thu Jan 02 23:03:50 2025 -0800 +++ b/controller_info.c Thu Jan 02 23:32:38 2025 -0800 @@ -29,7 +29,8 @@ {"WiiU", {.type = TYPE_NINTENDO, .subtype = SUBTYPE_WIIU}}, {"Wii U", {.type = TYPE_NINTENDO, .subtype = SUBTYPE_WIIU}}, {"Nintendo Switch", {.type = TYPE_NINTENDO, .subtype = SUBTYPE_SWITCH}}, - {"Saturn", {.type = TYPE_SEGA, .subtype = SUBTYPE_SATURN}} + {"Saturn", {.type = TYPE_SEGA, .subtype = SUBTYPE_SATURN}}, + {"8BitDo M30", {.type = TYPE_SEGA, .subtype = SUBTYPE_GENESIS, .variant = VARIANT_8BUTTON}} }; const uint32_t num_heuristics = sizeof(heuristics)/sizeof(*heuristics);