| Commit message (Collapse) | Author | Age | Files | Lines | |
|---|---|---|---|---|---|
| * | general: Convert source file copyright comments over to SPDX | 2022-04-23 | 1 | -3/+2 | |
| | | | | | | This formats all copyright comments according to SPDX formatting guidelines. Additionally, this resolves the remaining GPLv2 only licensed files by relicensing them to GPLv2.0-or-later. | ||||
| * | Merge pull request #7633 from german77/hotkeys | 2022-01-11 | 1 | -3/+4 | |
| |\ | | | | | yuzu: Add controller hotkeys | ||||
| | * | yuzu: Add controller hotkeys | 2022-01-06 | 1 | -3/+4 | |
| | | | |||||
| * | | input_common: Handle errors on TAS scripts | 2022-01-08 | 1 | -7/+24 | |
| |/ | |||||
| * | Merge pull request #7575 from lioncash/input | 2021-12-13 | 1 | -1/+1 | |
| |\ | | | | | input_engine: Minor object churn cleanup | ||||
| | * | input_engine: std::move engine name where applicable | 2021-12-13 | 1 | -1/+1 | |
| | | | | | | | | | | | We can allow the name to be moved into, allowing allocations to be avoided. | ||||
| * | | tas_input: Avoid minor copies in Read/WriteCommandButtons() | 2021-12-13 | 1 | -2/+2 | |
| | | | | | | | | | We don't need to copy the whole pair | ||||
| * | | tas_input: Remove unnecessary semicolon | 2021-12-13 | 1 | -1/+1 | |
| | | | | | | | | | Resolves a -Wextra-semi warning | ||||
| * | | tas_input: Execute clear() even if empty | 2021-12-13 | 1 | -3/+2 | |
| | | | | | | | | | | | clear() when empty is simply a no-op, so we can get rid of the check here and let the stdlib do it for us. | ||||
| * | | tas_input: std::move strings into vector | 2021-12-13 | 1 | -21/+24 | |
| | | | | | | | | | | | While we're in the same area, we can also avoid performing std::stoi in a loop when it only needs to be performed once. | ||||
| * | | tas_input: Use istringstream over stringstream | 2021-12-13 | 1 | -2/+2 | |
| | | | | | | | | | | | This is only using the input facilities, so we don't need to use the fully-fleged stringstream. | ||||
| * | | tas_input: Use u8string_view instead of u8string | 2021-12-13 | 1 | -5/+6 | |
| | | | | | | | | | Same behavior, but without the potential for extra allocations. | ||||
| * | | tas_input: Remove unused std::smatch variable | 2021-12-13 | 1 | -2/+0 | |
| | | | | | | | | | This also means we can get rid of the dependency on <regex> | ||||
| * | | tas_input: Amend -Wdocumentation warnings | 2021-12-13 | 1 | -5/+5 | |
| | | | | | | | | | Parameters shouldn't have the colon by their name. | ||||
| * | | tas_input: Make TasAxes enum an enum class | 2021-12-13 | 1 | -5/+9 | |
| |/ | | | | | Prevents these values from potentially clashing with anything in other headers. | ||||
| * | kraken: Address comments from review | 2021-11-24 | 1 | -1/+1 | |
| | | | | | Fix compiler bug | ||||
| * | core/hid: Prevent Emulated controller from flapping with multiple inputs devices | 2021-11-24 | 1 | -15/+9 | |
| | | |||||
| * | input_common: Revert deleted TAS functions | 2021-11-24 | 1 | -11/+12 | |
| | | |||||
| * | core/hid: Only signal when needed | 2021-11-24 | 1 | -1/+1 | |
| | | |||||
| * | input_common: Rewrite gc_adapter | 2021-11-24 | 1 | -0/+320 | |