summaryrefslogtreecommitdiffstats
path: root/video/out/vo_sdl.c
diff options
context:
space:
mode:
authorwm4 <wm4@nowhere>2013-07-22 22:52:42 +0200
committerwm4 <wm4@nowhere>2013-07-22 22:52:42 +0200
commit1f5ffe7d30a5537cc83fbfb8dad37d01af27427b (patch)
tree7e450c6208e14a2c4fe71e14461469c8fab1b7c8 /video/out/vo_sdl.c
parent1df2ad7e034c1c42a8ae86e8b3077c2342ad40bd (diff)
downloadmpv-1f5ffe7d30a5537cc83fbfb8dad37d01af27427b.tar.bz2
mpv-1f5ffe7d30a5537cc83fbfb8dad37d01af27427b.tar.xz
video/out: remove options argument from preinit()
All VOs use proper option parsing now, and compatibility hacks are not needed.
Diffstat (limited to 'video/out/vo_sdl.c')
-rw-r--r--video/out/vo_sdl.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/video/out/vo_sdl.c b/video/out/vo_sdl.c
index 35d3ab4962..c5ecc2be8c 100644
--- a/video/out/vo_sdl.c
+++ b/video/out/vo_sdl.c
@@ -728,7 +728,7 @@ static void draw_osd(struct vo *vo, struct osd_state *osd)
osd_draw(osd, vc->osd_res, osd->vo_pts, 0, formats, draw_osd_cb, vo);
}
-static int preinit(struct vo *vo, const char *arg)
+static int preinit(struct vo *vo)
{
struct priv *vc = vo->priv;