summaryrefslogtreecommitdiffstats
path: root/video/out/win_state.c
diff options
context:
space:
mode:
Diffstat (limited to 'video/out/win_state.c')
-rw-r--r--video/out/win_state.c2
1 files changed, 2 insertions, 0 deletions
diff --git a/video/out/win_state.c b/video/out/win_state.c
index af54f8215f..f48f628173 100644
--- a/video/out/win_state.c
+++ b/video/out/win_state.c
@@ -90,6 +90,8 @@ void vo_calc_window_geometry(struct vo *vo, const struct mp_rect *screen,
int d_h = params.d_h;
if ((vo->driver->caps & VO_CAP_ROTATE90) && params.rotate % 180 == 90)
MPSWAP(int, d_w, d_h);
+ d_w = MPCLAMP(d_w * opts->window_scale, 1, 16000);
+ d_h = MPCLAMP(d_h * opts->window_scale, 1, 16000);
int scr_w = screen->x1 - screen->x0;
int scr_h = screen->y1 - screen->y0;