mirror of
https://github.com/LizardByte/Sunshine.git
synced 2025-04-09 21:45:24 +00:00
Fix another lint warning.
This commit is contained in:
parent
9a2689692a
commit
80ebc9982e
@ -720,7 +720,7 @@ inline void rumbleIterate(std::vector<effect_t> &effects, std::vector<pollfd_t>
|
|||||||
for(auto x = 0; x < polls_tmp.size(); ++x) {
|
for(auto x = 0; x < polls_tmp.size(); ++x) {
|
||||||
auto pfd = polls_tmp[x].fd;
|
auto pfd = polls_tmp[x].fd;
|
||||||
for(auto y = 0; y < polls.size(); ++y) {
|
for(auto y = 0; y < polls.size(); ++y) {
|
||||||
if (pfd == polls[y].el.fd) {
|
if(pfd == polls[y].el.fd) {
|
||||||
polls[y].el.revents = polls_tmp[x].revents;
|
polls[y].el.revents = polls_tmp[x].revents;
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
Loading…
x
Reference in New Issue
Block a user