mirror of
https://github.com/ayufan/steam-deck-tools.git
synced 2025-12-06 07:12:01 +01:00
10 lines
236 B
C#
10 lines
236 B
C#
// If L5 is hold, the A, B, X, Y is turbo: 10x per second
|
|
if (Steam.BtnL5)
|
|
{
|
|
X360.BtnA = Turbo(Steam.BtnA, 10);
|
|
X360.BtnB = Turbo(Steam.BtnB, 10);
|
|
X360.BtnX = Turbo(Steam.BtnX, 10);
|
|
X360.BtnY = Turbo(Steam.BtnY, 10);
|
|
}
|
|
|