Merge "minui: Fix the wrong move of the callback."

This commit is contained in:
Tao Bao 2019-03-11 22:51:50 +00:00 committed by Gerrit Code Review
commit aefc9e3ba9

View file

@ -97,7 +97,7 @@ int ev_init(ev_callback input_cb, bool allow_touch_inputs) {
}
ev_fdinfo[ev_count].fd = fd;
ev_fdinfo[ev_count].cb = std::move(input_cb);
ev_fdinfo[ev_count].cb = input_cb;
ev_count++;
ev_dev_count++;
if (ev_dev_count == MAX_DEVICES) break;