From 905029ec0c89b638792a429263bb6033eb074570 Mon Sep 17 00:00:00 2001 From: wm4 Date: Sat, 11 Jan 2014 18:50:02 +0100 Subject: video/out: remove pointless x/y parameter from vo_x11_config_vo_window This never made any real sense; the "backend" has to access vo->dx/dy anyway. --- video/out/vo_x11.c | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) (limited to 'video/out/vo_x11.c') diff --git a/video/out/vo_x11.c b/video/out/vo_x11.c index b7bd64b0a5..8240f55b25 100644 --- a/video/out/vo_x11.c +++ b/video/out/vo_x11.c @@ -308,8 +308,7 @@ static int reconfig(struct vo *vo, struct mp_image_params *fmt, int flags) TrueColor, &p->vinfo)) return -1; - vo_x11_config_vo_window(vo, &p->vinfo, vo->dx, vo->dy, vo->dwidth, - vo->dheight, flags, "x11"); + vo_x11_config_vo_window(vo, &p->vinfo, vo->dwidth, vo->dheight, flags, "x11"); if (!resize(vo)) return -1; -- cgit v1.2.3