[Common] Fixes from Unknown W. Brackets: <checkins@unknownbrackets.org>

This commit is contained in:
Herman Semenov
2024-09-18 11:11:25 +02:00
committed by Henrik Rydgård
parent efa742322b
commit 4ef014cb73
3 changed files with 10 additions and 10 deletions
+1 -1
View File
@@ -42,7 +42,7 @@ std::vector<InputMapping> tabRightKeys;
static std::unordered_map<InputDeviceID, int> uiFlipAnalogY;
static void AppendKeys(std::vector<InputMapping> &keys, const std::vector<InputMapping> &newKeys) {
for (auto key : newKeys) {
for (const auto &key : newKeys) {
keys.push_back(key);
}
}