Skip to content

Commit e29ad33

Browse files
committed
Even though flush was being done, it was ignored
- Flushing everything, even the "did anything happen" flag meant...nothing happened - Setting the updated flag after flushing the USB buffers fixes the RCtrl+RShift being held issue on Kira - Fixes Issue #308
1 parent a95693b commit e29ad33

File tree

1 file changed

+5
-0
lines changed

1 file changed

+5
-0
lines changed

Diff for: Output/USB/output_usb.c

+5
Original file line numberDiff line numberDiff line change
@@ -739,6 +739,11 @@ void USB_flushBuffers()
739739
USBMouse_VertWheel = 0;
740740
USBMouse_HoriWheel = 0;
741741
USBMouse_Changed = 0;
742+
743+
// Make sure everything actually flushes
744+
USBKeys_primary.changed = 1;
745+
USBKeys_idle.changed = 1;
746+
USBMouse_Changed = 1;
742747
}
743748

744749

0 commit comments

Comments
 (0)