Fix lint warning about code style.

This commit is contained in:
Mathias Tillman
2022-03-09 16:40:39 +01:00
parent 1f79f4ed12
commit 9a2689692a
+4 -3
View File
@@ -717,9 +717,10 @@ inline void rumbleIterate(std::vector<effect_t> &effects, std::vector<pollfd_t>
} }
// Copy over the received events // Copy over the received events
for (auto x = 0; x < polls_tmp.size(); ++x) { for(auto x = 0; x < polls_tmp.size(); ++x) {
for (auto y = 0; y < polls.size(); ++y) { auto pfd = polls_tmp[x].fd;
if (polls_tmp[x].fd == polls[y].el.fd) { for(auto y = 0; y < polls.size(); ++y) {
if (pfd == polls[y].el.fd) {
polls[y].el.revents = polls_tmp[x].revents; polls[y].el.revents = polls_tmp[x].revents;
} }
} }