Commit c57d3469 authored by Michael Niedermayer's avatar Michael Niedermayer

remember the size after switching back from fullscreen

Originally committed as revision 7391 to svn://svn.ffmpeg.org/ffmpeg/trunk
parent fb84155b
......@@ -2281,8 +2281,8 @@ static void event_loop(void)
if (cur_stream) {
screen = SDL_SetVideoMode(event.resize.w, event.resize.h, 0,
SDL_HWSURFACE|SDL_RESIZABLE|SDL_ASYNCBLIT|SDL_HWACCEL);
cur_stream->width = event.resize.w;
cur_stream->height = event.resize.h;
screen_width = cur_stream->width = event.resize.w;
screen_height= cur_stream->height= event.resize.h;
}
break;
case SDL_QUIT:
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment