diff options
| author | rollschuh2282 <53496587+rollschuh2282@users.noreply.github.com> | 2020-05-02 12:58:12 +0200 |
|---|---|---|
| committer | GitHub <noreply@github.com> | 2020-05-02 12:58:12 +0200 |
| commit | ccf7ebca9a1eaea7a6dc9f45d2a427db05a061a6 (patch) | |
| tree | 4b6050ae14fd70994c8b69ec029ccd087e2e8dea /src/core/Pad.h | |
| parent | update librw (vsynch) (diff) | |
| download | re3-ccf7ebca9a1eaea7a6dc9f45d2a427db05a061a6.tar.gz | |
fixed the CIRCLE_BACK_BUTTON define.
Diffstat (limited to 'src/core/Pad.h')
| -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); } |
