summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
-rw-r--r--video/out/vo_wayland.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/video/out/vo_wayland.c b/video/out/vo_wayland.c
index 1d9025b245..dddf047611 100644
--- a/video/out/vo_wayland.c
+++ b/video/out/vo_wayland.c
@@ -595,8 +595,8 @@ static int reconfig(struct vo *vo, struct mp_image_params *fmt, int flags)
struct priv *p = vo->priv;
mp_image_unrefp(&p->original_image);
- p->width = vo->dwidth;
- p->height = vo->dheight;
+ p->width = fmt->w;
+ p->height = fmt->h;
p->in_format = *fmt;
struct supported_format *sf;