From 1e818b130aa152c89d9fda80010a6d3a7ded4ed1 Mon Sep 17 00:00:00 2001 From: wm4 Date: Tue, 22 Apr 2014 21:03:35 +0200 Subject: [PATCH] vo: minor cosmetic change --- video/out/vo.c | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) diff --git a/video/out/vo.c b/video/out/vo.c index 122bd02bf5..89568cc175 100644 --- a/video/out/vo.c +++ b/video/out/vo.c @@ -437,8 +437,7 @@ int vo_reconfig(struct vo *vo, struct mp_image_params *params, int flags) if (vo_control(vo, VOCTRL_UPDATE_SCREENINFO, NULL) == VO_TRUE) { int w = params->d_w, h = params->d_h; - if ((vo->driver->caps & VO_CAP_ROTATE90) && - params->rotate % 180 == 90) + if ((vo->driver->caps & VO_CAP_ROTATE90) && params->rotate % 180 == 90) MPSWAP(int, w, h); determine_window_geometry(vo, w, h); d_width = vo->dwidth;