summaryrefslogtreecommitdiffstats
path: root/src/core/Pad.h
diff options
context:
space:
mode:
authorerorcun <erayorcunus@gmail.com>2019-09-28 18:29:06 +0200
committerGitHub <noreply@github.com>2019-09-28 18:29:06 +0200
commit2d09a4b01347df4e552c746f5cc4c4a1eaba6586 (patch)
tree9d074f55b82c0a8eb1c7bb9daa8190db1219156c /src/core/Pad.h
parentMerge pull request #211 from erorcun/erorcun (diff)
parentAdded CUTSCENEDIRSIZE to Config enum and CUTSCENENAMESIZE macro (diff)
downloadre3-2d09a4b01347df4e552c746f5cc4c4a1eaba6586.tar
re3-2d09a4b01347df4e552c746f5cc4c4a1eaba6586.tar.gz
re3-2d09a4b01347df4e552c746f5cc4c4a1eaba6586.tar.bz2
re3-2d09a4b01347df4e552c746f5cc4c4a1eaba6586.tar.lz
re3-2d09a4b01347df4e552c746f5cc4c4a1eaba6586.tar.xz
re3-2d09a4b01347df4e552c746f5cc4c4a1eaba6586.tar.zst
re3-2d09a4b01347df4e552c746f5cc4c4a1eaba6586.zip
Diffstat (limited to 'src/core/Pad.h')
-rw-r--r--src/core/Pad.h1
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; }