1
mirror of https://github.com/mpv-player/mpv synced 2025-01-09 01:36:25 +01:00

Fix window size bug when starting with -fs and returning

to windowed mode


git-svn-id: svn://svn.mplayerhq.hu/mplayer/trunk@18992 b3059339-0415-0410-9bf9-f77b7e298cf2
This commit is contained in:
reimar 2006-07-10 10:22:29 +00:00
parent 9335d08615
commit 384cb8f2a3

View File

@ -301,8 +301,8 @@ int vo_w32_config(uint32_t width, uint32_t height, uint32_t flags) {
o_dwidth = width;
o_dheight = height;
prev_width = width;
prev_height = height;
prev_width = vo_dwidth = width;
prev_height = vo_dheight = height;
prev_x = vo_dx;
prev_y = vo_dy;