diff options
author | aap <aap@papnet.eu> | 2020-05-02 13:45:59 +0200 |
---|---|---|
committer | GitHub <noreply@github.com> | 2020-05-02 13:45:59 +0200 |
commit | a1c1be7af9f5ecee8f89db35b802a7874afc5c41 (patch) | |
tree | 4b6050ae14fd70994c8b69ec029ccd087e2e8dea | |
parent | 339365806a80802d237f535807652ad496f488b3 (diff) | |
parent | ccf7ebca9a1eaea7a6dc9f45d2a427db05a061a6 (diff) |
Merge pull request #502 from rollschuh2282/patch-1
fixed the CIRCLE_BACK_BUTTON define.
-rw-r--r-- | src/core/Pad.h | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/src/core/Pad.h b/src/core/Pad.h index b8228444..b24edf4a 100644 --- a/src/core/Pad.h +++ b/src/core/Pad.h @@ -418,6 +418,7 @@ public: bool GetLeftStickYJustDown() { return !!(NewState.LeftStickY && !OldState.LeftStickY); } bool GetTriangleJustUp() { return !!(!NewState.Triangle && OldState.Triangle); } + bool GetCircleJustUp() { return !!(!NewState.Circle && OldState.Circle); } bool GetCrossJustUp() { return !!(!NewState.Cross && OldState.Cross); } bool GetSquareJustUp() { return !!(!NewState.Square && OldState.Square); } bool GetDPadUpJustUp() { return !!(!NewState.DPadUp && OldState.DPadUp); } |