| 339 | } |
| 340 | |
| 341 | void AllInputs::processEvents() |
| 342 | { |
| 343 | for (const auto& event : events) { |
| 344 | SingleInput si; |
| 345 | si.type = event.type; |
| 346 | si.which = event.which; |
| 347 | setInput(si, event.value); |
| 348 | } |
| 349 | } |
| 350 | |
| 351 | void AllInputs::send(bool preview) |
| 352 | { |