Skip to content
This repository has been archived by the owner on Mar 1, 2024. It is now read-only.

Fix warnings about GamepadButtonReleased #451

Merged
merged 1 commit into from
Dec 13, 2023
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
3 changes: 2 additions & 1 deletion Frontend/library/src/Inputs/GamepadController.ts
Original file line number Diff line number Diff line change
Expand Up @@ -202,7 +202,8 @@ export class GamePadController {
} else {
toStreamerHandlers.get('GamepadButtonReleased')([
controllerIndex,
i
i,
0
]);
}
}
Expand Down