aboutsummaryrefslogtreecommitdiff
path: root/src/input_common/drivers/tas_input.cpp
diff options
context:
space:
mode:
authorLioncash <mathew1800@gmail.com>2021-12-13 10:49:06 -0500
committerLioncash <mathew1800@gmail.com>2021-12-13 10:49:11 -0500
commitd52ad96ce348656b2ea7de8b8a85badfa86d2860 (patch)
tree1d054ac61a893b2b16e977b3b792b7b320d9407f /src/input_common/drivers/tas_input.cpp
parentc126b0718ca4ffff463c4462ca38f61019df4acf (diff)
tas_input: Amend -Wdocumentation warnings
Parameters shouldn't have the colon by their name.
Diffstat (limited to 'src/input_common/drivers/tas_input.cpp')
-rw-r--r--src/input_common/drivers/tas_input.cpp10
1 files changed, 5 insertions, 5 deletions
diff --git a/src/input_common/drivers/tas_input.cpp b/src/input_common/drivers/tas_input.cpp
index 1a38616b49..19d8ccae37 100644
--- a/src/input_common/drivers/tas_input.cpp
+++ b/src/input_common/drivers/tas_input.cpp
@@ -238,13 +238,13 @@ TasAnalog Tas::ReadCommandAxis(const std::string& line) const {
return {x, y};
}
-u64 Tas::ReadCommandButtons(const std::string& data) const {
- std::stringstream button_text(data);
- std::string line;
+u64 Tas::ReadCommandButtons(const std::string& line) const {
+ std::stringstream button_text(line);
+ std::string button_line;
u64 buttons = 0;
- while (std::getline(button_text, line, ';')) {
+ while (std::getline(button_text, button_line, ';')) {
for (auto [text, tas_button] : text_to_tas_button) {
- if (text == line) {
+ if (text == button_line) {
buttons |= static_cast<u64>(tas_button);
break;
}