fix(controller): Always process forced update events
This commit is contained in:
parent
3722ac1617
commit
3d6084f0c0
@ -330,6 +330,8 @@ void controller::process_eventqueue() {
|
|||||||
}
|
}
|
||||||
} else if (evt.type == event_type::INPUT) {
|
} else if (evt.type == event_type::INPUT) {
|
||||||
process_inputdata();
|
process_inputdata();
|
||||||
|
} else if (evt.type == event_type::UPDATE && evt.flag) {
|
||||||
|
process_update(true);
|
||||||
} else {
|
} else {
|
||||||
event next{};
|
event next{};
|
||||||
size_t swallowed{0};
|
size_t swallowed{0};
|
||||||
|
Loading…
Reference in New Issue
Block a user