[HID] Redo service

This commit is contained in:
wheremyfoodat 2023-06-06 00:57:48 +03:00
parent 629e00251c
commit dea8b9ec2e
4 changed files with 109 additions and 14 deletions

View file

@ -89,5 +89,5 @@ public:
void releaseKey(u32 key) { hid.releaseKey(key); }
void setCirclepadX(u16 x) { hid.setCirclepadX(x); }
void setCirclepadY(u16 y) { hid.setCirclepadY(y); }
void updateInputs() { hid.updateInputs(); }
void updateInputs(u64 currentTimestamp) { hid.updateInputs(currentTimestamp); }
};