1
0
mirror of https://github.com/TomHarte/CLK.git synced 2025-02-03 22:33:29 +00:00

Add note to self.

This commit is contained in:
Thomas Harte 2023-08-20 15:03:28 -04:00
parent 17f1f05064
commit 1125286b96

View File

@ -41,6 +41,7 @@ void Mouse::perform_command(const Command &command) {
}
void Mouse::move(int x, int y) {
// TODO: cap movement speed, feeding changes in slowly.
delta_x_ += int16_t(x);
delta_y_ += int16_t(y);
post_service_request();