diff options
Diffstat (limited to 'video/out/cocoa_common.m')
-rw-r--r-- | video/out/cocoa_common.m | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/video/out/cocoa_common.m b/video/out/cocoa_common.m index e0f0f785e0..abead0fb53 100644 --- a/video/out/cocoa_common.m +++ b/video/out/cocoa_common.m @@ -994,9 +994,9 @@ int vo_cocoa_control(struct vo *vo, int *events, int request, void *arg) cocoa_put_key_with_modifiers(mpkey, modifiers); } -- (void)putAxis:(int)mpkey delta:(float)delta; +- (void)putWheel:(int)mpkey delta:(float)delta; { - mp_input_put_axis(self.vout->input_ctx, mpkey, delta); + mp_input_put_wheel(self.vout->input_ctx, mpkey, delta); } - (void)putCommand:(char*)cmd |