NeGcon as wheel via RetroZord adapter (arduino based) (#607)

This commit is contained in:
Matheus Fraguas
2022-05-19 20:43:53 -03:00
committed by GitHub
parent 590dcae13c
commit 0f0affb238

View File

@@ -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;
}
}
}
}