From 6f80a694d3de98ce9ddabf1c188865fc6be69710 Mon Sep 17 00:00:00 2001 From: wm4 Date: Mon, 26 Jun 2017 19:55:40 +0200 Subject: client API: drop old "no-" option emulation You could do mpv_set_option(h, "no-fs", ""), which would behave like "--no-fs" on the command line. At one point, this had to be emulated for compatibility, and printed a deprecation warning. This was almost a year ago, so remove it. --- libmpv/client.h | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'libmpv/client.h') diff --git a/libmpv/client.h b/libmpv/client.h index 8faa7b8129..eca0978fee 100644 --- a/libmpv/client.h +++ b/libmpv/client.h @@ -205,7 +205,7 @@ extern "C" { * relational operators (<, >, <=, >=). */ #define MPV_MAKE_VERSION(major, minor) (((major) << 16) | (minor) | 0UL) -#define MPV_CLIENT_API_VERSION MPV_MAKE_VERSION(1, 24) +#define MPV_CLIENT_API_VERSION MPV_MAKE_VERSION(1, 25) /** * The API user is allowed to "#define MPV_ENABLE_DEPRECATED 0" before -- cgit v1.2.3