summaryrefslogtreecommitdiffstats
path: root/video/out/w32_common.c
diff options
context:
space:
mode:
Diffstat (limited to 'video/out/w32_common.c')
-rw-r--r--video/out/w32_common.c5
1 files changed, 3 insertions, 2 deletions
diff --git a/video/out/w32_common.c b/video/out/w32_common.c
index 6588ac7573..96e8c69702 100644
--- a/video/out/w32_common.c
+++ b/video/out/w32_common.c
@@ -718,8 +718,9 @@ static void w32_update_xinerama_info(struct vo *vo)
GetSystemMetrics(SM_CYVIRTUALSCREEN),
};
if (!rc.x1 || !rc.y1) {
- rc.x1 = w32->screenrc.x1; // assume screenrc.x0==y0==0
- rc.x1 = w32->screenrc.y1;
+ rc.x0 = rc.y0 = 0;
+ rc.x1 = w32->screenrc.x1;
+ rc.y1 = w32->screenrc.y1;
}
rc.x1 += rc.x0;
rc.y1 += rc.y0;