Skip to content

Commit

Permalink
fix: corrects recent change that broke Turbo EverDrive Pro IGR patch
Browse files Browse the repository at this point in the history
  • Loading branch information
RobertDaleSmith committed Sep 20, 2023
1 parent 2095011 commit 70ff5a7
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion PCEMouse/src/main.c
Original file line number Diff line number Diff line change
Expand Up @@ -356,7 +356,7 @@ void __not_in_flash_func(update_output)(void)
// base controller/mouse buttons
int8_t byte = (players[i].output_buttons & 0xff);

if (i >= playersCount) {
if (i >= playersCount && !hotkey) {
bytes[i] = 0xff;
continue;
}
Expand Down

0 comments on commit 70ff5a7

Please sign in to comment.