From 0f0affb238a1c5d3cd15c643dea036c8741c9f76 Mon Sep 17 00:00:00 2001 From: Matheus Fraguas Date: Thu, 19 May 2022 20:43:53 -0300 Subject: [PATCH] NeGcon as wheel via RetroZord adapter (arduino based) (#607) --- input.cpp | 9 +++++++++ 1 file changed, 9 insertions(+) diff --git a/input.cpp b/input.cpp index 6a6d096..3b6a9c4 100644 --- a/input.cpp +++ b/input.cpp @@ -4129,6 +4129,15 @@ static void setup_wheels() set_wheel_range(i, cfg.wheel_range); } } + + //Namco NeGcon via RetroZord adapter + else if (input[i].vid == 0x2341 && input[i].pid == 0x8036 && strstr(input[i].name, "RZordPsWheel")) + { + input[i].wh_accel = 6; + input[i].wh_break = 10; + input[i].wh_clutch = 2; + input[i].quirk = QUIRK_WHEEL; + } } } }