From d3f7248ca973547c2a367dec5f2488e55a9003e4 Mon Sep 17 00:00:00 2001 From: wm4 Date: Mon, 19 Aug 2013 22:30:44 +0200 Subject: m_option: make "add speed 0.1" command work Was broken since the speed property was switched from float to double. --- mpvcore/m_option.c | 1 + 1 file changed, 1 insertion(+) diff --git a/mpvcore/m_option.c b/mpvcore/m_option.c index 1e195bcece..1f160443c5 100644 --- a/mpvcore/m_option.c +++ b/mpvcore/m_option.c @@ -651,6 +651,7 @@ const m_option_type_t m_option_type_double = { .pretty_print = print_double_f3, .copy = copy_opt, .clamp = clamp_double, + .add = add_double, }; #undef VAL -- cgit v1.2.3