mirror of
https://github.com/GTAmodding/re3.git
synced 2024-11-15 14:39:03 +00:00
fixed the CIRCLE_BACK_BUTTON define.
This commit is contained in:
parent
339365806a
commit
ccf7ebca9a
1 changed files with 1 additions and 0 deletions
|
@ -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); }
|
||||
|
|
Loading…
Reference in a new issue