1
0
mirror of https://github.com/mpv-player/mpv synced 2025-03-20 10:17:31 +00:00

10l: Add missing braces for VOCTRL_GET_EOSD_RES.

git-svn-id: svn://svn.mplayerhq.hu/mplayer/trunk@28734 b3059339-0415-0410-9bf9-f77b7e298cf2
This commit is contained in:
cehoyos 2009-02-25 15:17:14 +00:00
parent e5294a43b9
commit 115c0fddae

View File

@ -1076,8 +1076,10 @@ static int control(uint32_t request, void *data, ...)
r->h = vo_screenheight;
r->ml = r->mr = border_x;
r->mt = r->mb = border_y;
} else
r->w = vo_dwidth; r->h = vo_dheight;
} else {
r->w = vo_dwidth;
r->h = vo_dheight;
}
return VO_TRUE;
}
}