1
0
forked from Clones/Controlify

🐛 Re-disable broken Steam Deck driver

This commit is contained in:
isXander
2023-05-07 12:39:43 +01:00
parent fae0123ded
commit af83e5c712
2 changed files with 2 additions and 2 deletions

View File

@ -17,7 +17,7 @@ plugins {
}
group = "dev.isxander"
version = "1.1.1+1.19.4"
version = "1.2.0+1.19.4"
repositories {
mavenCentral()

View File

@ -36,7 +36,7 @@ public record GamepadDrivers(BasicGamepadInputDriver basicGamepadInputDriver, Gy
}
// broken
if (hid.isPresent() && SteamDeckDriver.isSteamDeck(hid.get())) {
if (hid.isPresent() && SteamDeckDriver.isSteamDeck(hid.get()) && false) {
gyroDriver = new SteamDeckDriver(hid.get());
}