diff options
| author | 2021-11-14 21:56:54 -0600 | |
|---|---|---|
| committer | 2021-11-24 20:30:28 -0600 | |
| commit | 42949738f2c01a4125a9a385c9100240181153ec (patch) | |
| tree | 5de97be0bc08a1dd4ff5138196c08a6bf2e08e70 /src/input_common/drivers/tas_input.cpp | |
| parent | core/hid: Improve accuary of mouse implementation (diff) | |
| download | yuzu-42949738f2c01a4125a9a385c9100240181153ec.tar.gz yuzu-42949738f2c01a4125a9a385c9100240181153ec.tar.xz yuzu-42949738f2c01a4125a9a385c9100240181153ec.zip | |
kraken: Address comments from review
Fix compiler bug
Diffstat (limited to 'src/input_common/drivers/tas_input.cpp')
| -rw-r--r-- | src/input_common/drivers/tas_input.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/input_common/drivers/tas_input.cpp b/src/input_common/drivers/tas_input.cpp index bb9c236ea..0e01fb0d9 100644 --- a/src/input_common/drivers/tas_input.cpp +++ b/src/input_common/drivers/tas_input.cpp | |||
| @@ -47,7 +47,7 @@ constexpr std::array<std::pair<std::string_view, TasButton>, 20> text_to_tas_but | |||
| 47 | {"KEY_ZR", TasButton::TRIGGER_ZR}, | 47 | {"KEY_ZR", TasButton::TRIGGER_ZR}, |
| 48 | }; | 48 | }; |
| 49 | 49 | ||
| 50 | Tas::Tas(const std::string input_engine_) : InputCommon::InputEngine(input_engine_) { | 50 | Tas::Tas(const std::string& input_engine_) : InputCommon::InputEngine(input_engine_) { |
| 51 | for (size_t player_index = 0; player_index < PLAYER_NUMBER; player_index++) { | 51 | for (size_t player_index = 0; player_index < PLAYER_NUMBER; player_index++) { |
| 52 | PadIdentifier identifier{ | 52 | PadIdentifier identifier{ |
| 53 | .guid = Common::UUID{}, | 53 | .guid = Common::UUID{}, |