From ccf7ebca9a1eaea7a6dc9f45d2a427db05a061a6 Mon Sep 17 00:00:00 2001 From: rollschuh2282 <53496587+rollschuh2282@users.noreply.github.com> Date: Sat, 2 May 2020 12:58:12 +0200 Subject: [PATCH] fixed the CIRCLE_BACK_BUTTON define. --- src/core/Pad.h | 1 + 1 file changed, 1 insertion(+) 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); }