diff options
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 4f129e85..eca334ee 100644 --- a/src/core/Pad.h +++ b/src/core/Pad.h @@ -368,6 +368,7 @@ public: bool GetLeftShoulder2JustDown() { return !!(NewState.LeftShoulder2 && !OldState.LeftShoulder2); } bool GetRightShoulder1JustDown() { return !!(NewState.RightShoulder1 && !OldState.RightShoulder1); } bool GetRightShoulder2JustDown() { return !!(NewState.RightShoulder2 && !OldState.RightShoulder2); } + bool GetStartJustDown() { return !!(NewState.Start && !OldState.Start); } /* int32 GetLeftShoulder1(void) { return NewState.LeftShoulder1; } |