SteamController: Rename UserProfiles to ControllerProfiles

This commit is contained in:
Kamil Trzciński 2023-01-10 11:30:53 +01:00
parent 2ff2864f23
commit 6cd481e682
4 changed files with 9 additions and 9 deletions

View file

@ -0,0 +1,9 @@
// 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);
}