Commit message (Collapse) | Author | Files | Lines | ||
---|---|---|---|---|---|
2021-12-13 | input_engine: Fix typo in TriggerOnAxisChange() parameter name | Lioncash | 1 | -1/+1 | |
2021-12-13 | input_engine: Simplify PreSet* family of functions | Lioncash | 1 | -9/+9 | |
We can make use of try_emplace() to insert values only if they don't already exist. | |||||
2021-12-13 | input_engine: Remove left-over namespace qualifiers | Lioncash | 1 | -3/+3 | |
These types are part of the InputCommon namespace. | |||||
2021-12-13 | input_engine: Take BasicMotion by const reference with SetMotion() and TriggerOnMotionChange() | Lioncash | 1 | -2/+3 | |
Copies the BasicMotion instance once instead of twice. | |||||
2021-12-13 | input_engine: Pass LedStatus by const reference | Lioncash | 1 | -1/+1 | |
Avoids copies where reasonably applicable | |||||
2021-12-13 | input_engine: Pass VibrationStatus by const reference in SetRumble() | Lioncash | 1 | -1/+1 | |
Avoids creating copies of the struct where not necessary. | |||||
2021-12-13 | input_engine: std::move engine name where applicable | Lioncash | 1 | -1/+1 | |
We can allow the name to be moved into, allowing allocations to be avoided. | |||||
2021-12-13 | input_engine: Remove callback clearing in constructor | Lioncash | 1 | -3/+1 | |
The callback map is a member variable, so this will always be empty on initial construction. | |||||
2021-12-13 | input_engine: Remove unnecessary semi-colons | Lioncash | 1 | -6/+6 | |
Silences -Wextra-semi warnings | |||||
2021-12-13 | input_engine: Remove unnecessary return | Lioncash | 1 | -3/+1 | |
This is a void function, so it doesn't need this. | |||||
2021-11-25 | input_common: Move button names to the frontend | german77 | 1 | -2/+3 | |
2021-11-25 | kraken: Address comments from review | german77 | 1 | -1/+1 | |
Fix compiler bug | |||||
2021-11-25 | settings: Fix Debug controller type options | german77 | 1 | -3/+2 | |
2021-11-25 | kraken: Address comments from review | german77 | 1 | -7/+7 | |
start lion review | |||||
2021-11-25 | kraken: Fix errors from rebase and format files | german77 | 1 | -4/+6 | |
2021-11-25 | core/hid: Add output devices | german77 | 1 | -6/+12 | |
2021-11-25 | input_common: Create input_engine | german77 | 1 | -0/+224 | |