summaryrefslogtreecommitdiffhomepage
path: root/dinput
diff options
context:
space:
mode:
authorStanislaw Halik <sthalik@misaki.pl>2017-05-24 17:23:57 +0200
committerStanislaw Halik <sthalik@misaki.pl>2017-05-24 17:23:57 +0200
commitf0b92f982bfad25b44a3088d0c48f9e6349d4f03 (patch)
tree49a053ae9e28990c5973eabbc19f79efc4694df9 /dinput
parent73cd5fb72ce62c54f778979defbdc9c91f3307cf (diff)
dinput: fix build on GNU
Diffstat (limited to 'dinput')
-rw-r--r--dinput/keybinding-worker.cpp2
1 files changed, 1 insertions, 1 deletions
diff --git a/dinput/keybinding-worker.cpp b/dinput/keybinding-worker.cpp
index 71ab6d9c..0357752c 100644
--- a/dinput/keybinding-worker.cpp
+++ b/dinput/keybinding-worker.cpp
@@ -152,7 +152,7 @@ void KeybindingWorker::run()
k.held = held;
for (auto& r : receivers)
- r(k);
+ (*r)(k);
break;
}
}