1
0
forked from Clones/Controlify

Mixed input mode for Steam Deck

This commit is contained in:
isXander
2023-06-16 17:26:42 +01:00
parent 320c9d3d83
commit c5c7a3775f
18 changed files with 82 additions and 47 deletions

View File

@ -50,7 +50,7 @@ public record GamepadDrivers(BasicGamepadInputDriver basicGamepadInputDriver, Gy
}
// TODO: Fix Steam Deck driver
if (hid.isPresent() && SteamDeckDriver.isSteamDeck(hid.get()) && false) {
if (hid.isPresent() && SteamDeckDriver.isSteamDeck(hid.get().getVendorId(), hid.get().getProductId()) && false) {
gyroDriver = new SteamDeckDriver(hid.get());
}