diff options
Diffstat (limited to '')
-rw-r--r-- | minui/events.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/minui/events.cpp b/minui/events.cpp index 30f8d50a2..c95861036 100644 --- a/minui/events.cpp +++ b/minui/events.cpp @@ -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; |