diff options
author | german77 <juangerman-13@hotmail.com> | 2023-01-29 01:19:15 +0100 |
---|---|---|
committer | Narr the Reg <juangerman-13@hotmail.com> | 2023-02-01 19:42:05 +0100 |
commit | 75e81885b0bd38ece84a94b2d323b05d788f8741 (patch) | |
tree | c0ed8431e0a29906b41f5a6f74d9f2ddd449e99b /src/common/input.h | |
parent | Merge pull request #9707 from german77/clang15 (diff) | |
download | yuzu-75e81885b0bd38ece84a94b2d323b05d788f8741.tar yuzu-75e81885b0bd38ece84a94b2d323b05d788f8741.tar.gz yuzu-75e81885b0bd38ece84a94b2d323b05d788f8741.tar.bz2 yuzu-75e81885b0bd38ece84a94b2d323b05d788f8741.tar.lz yuzu-75e81885b0bd38ece84a94b2d323b05d788f8741.tar.xz yuzu-75e81885b0bd38ece84a94b2d323b05d788f8741.tar.zst yuzu-75e81885b0bd38ece84a94b2d323b05d788f8741.zip |
Diffstat (limited to '')
-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 d61cd7ca8..b5748a6c8 100644 --- a/src/common/input.h +++ b/src/common/input.h @@ -130,6 +130,8 @@ struct ButtonStatus { bool inverted{}; // Press once to activate, press again to release bool toggle{}; + // Spams the button when active + bool turbo{}; // Internal lock for the toggle status bool locked{}; }; |