diff options
author | liamwhite <liamwhite@users.noreply.github.com> | 2023-05-06 23:09:55 -0400 |
---|---|---|
committer | GitHub <noreply@github.com> | 2023-05-06 23:09:55 -0400 |
commit | 9c9b4616c3eda641f3d370758587fa776fa1a87e (patch) | |
tree | d081194e1ea0b673a1cc01f7c00846374da70594 /src/common/input.h | |
parent | e7b6389e44f23e8337db169e72a040a2c1a0ebbd (diff) | |
parent | f017335fef95d2cecc0fcda185f0e59cc1945101 (diff) |
Merge pull request #10167 from german77/motion_preview
yuzu: Add motion preview to controller input
Diffstat (limited to 'src/common/input.h')
-rw-r--r-- | src/common/input.h | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/src/common/input.h b/src/common/input.h index 51b277c1f..66fb15f0a 100644 --- a/src/common/input.h +++ b/src/common/input.h @@ -111,6 +111,8 @@ struct AnalogProperties { float offset{}; // Invert direction of the sensor data bool inverted{}; + // Invert the state if it's converted to a button + bool inverted_button{}; // Press once to activate, press again to release bool toggle{}; }; |