diff options
author | Sergeanur <s.anureev@yandex.ua> | 2020-06-30 06:44:51 +0200 |
---|---|---|
committer | Sergeanur <s.anureev@yandex.ua> | 2020-06-30 06:44:51 +0200 |
commit | 6f81e84bd41056cbf38aeaf9b20bd4493a6ffc5f (patch) | |
tree | b783a0a098bfc2e10520df5bc59dabc6c95cd9c4 /src/core | |
parent | Fix glfw.cpp (diff) | |
download | re3-6f81e84bd41056cbf38aeaf9b20bd4493a6ffc5f.tar re3-6f81e84bd41056cbf38aeaf9b20bd4493a6ffc5f.tar.gz re3-6f81e84bd41056cbf38aeaf9b20bd4493a6ffc5f.tar.bz2 re3-6f81e84bd41056cbf38aeaf9b20bd4493a6ffc5f.tar.lz re3-6f81e84bd41056cbf38aeaf9b20bd4493a6ffc5f.tar.xz re3-6f81e84bd41056cbf38aeaf9b20bd4493a6ffc5f.tar.zst re3-6f81e84bd41056cbf38aeaf9b20bd4493a6ffc5f.zip |
Diffstat (limited to 'src/core')
-rw-r--r-- | src/core/Pad.cpp | 9 |
1 files changed, 6 insertions, 3 deletions
diff --git a/src/core/Pad.cpp b/src/core/Pad.cpp index 99b9c8a8..97cc1786 100644 --- a/src/core/Pad.cpp +++ b/src/core/Pad.cpp @@ -518,9 +518,12 @@ void FlyingFishCheat(void) bool CControllerState::CheckForInput(void) { - return !!LeftStickX || !!LeftStickY || !!RightStickX || !!RightStickY || !!LeftShoulder1 || !!LeftShoulder2 || !!RightShoulder1 || !!RightShoulder2 || - !!DPadUp || !!DPadDown || !!DPadLeft || !!DPadRight || !!Start || !!Select || !!Square || !!Triangle || !!Cross || !!Circle || !!LeftShock || - !!RightShock; + return !!RightStickX || !!RightStickY || !!LeftStickX || !!LeftStickY + || !!DPadUp || !!DPadDown || !!DPadLeft || !!DPadRight + || !!Triangle || !!Cross || !!Circle || !!Square + || !!Start || !!Select + || !!LeftShoulder1 || !!LeftShoulder2 || !!RightShoulder1 || !!RightShoulder2 + || !!LeftShock || !!RightShock; } void |