summaryrefslogtreecommitdiffstats
path: root/libmpv/client.h
diff options
context:
space:
mode:
authorwm4 <wm4@nowhere>2017-06-26 19:55:40 +0200
committerwm4 <wm4@nowhere>2017-06-26 20:07:20 +0200
commit6f80a694d3de98ce9ddabf1c188865fc6be69710 (patch)
treed6f1f5faf4da5a20701c06f7a25cccbf9fc1d12b /libmpv/client.h
parent4c17ed457d3e7ee31bbeefa2d99ae6da75d2b21f (diff)
downloadmpv-6f80a694d3de98ce9ddabf1c188865fc6be69710.tar.bz2
mpv-6f80a694d3de98ce9ddabf1c188865fc6be69710.tar.xz
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.
Diffstat (limited to 'libmpv/client.h')
-rw-r--r--libmpv/client.h2
1 files changed, 1 insertions, 1 deletions
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