mirror of
https://github.com/wheremyfoodat/Panda3DS.git
synced 2025-06-03 12:27:21 +12:00
Hydra core
This commit is contained in:
parent
504c61c779
commit
23636b22fa
8 changed files with 182 additions and 5 deletions
|
@ -91,6 +91,7 @@ class HIDService {
|
|||
|
||||
void pressKey(u32 mask) { newButtons |= mask; }
|
||||
void releaseKey(u32 mask) { newButtons &= ~mask; }
|
||||
void setKey(u32 mask, bool pressed) { pressed ? pressKey(mask) : releaseKey(mask); }
|
||||
|
||||
u32 getOldButtons() const { return oldButtons; }
|
||||
s16 getCirclepadX() const { return circlePadX; }
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue