Mercurial > mplayer.hg
changeset 9488:abe81caa8cc1
fix fullscreenswitching patch by Joey Parrish <joey at nicewarrior.org>
author | faust3 |
---|---|
date | Sun, 23 Feb 2003 19:18:28 +0000 |
parents | 43a33dff1293 |
children | acab62e4e026 |
files | libvo/vo_directx.c |
diffstat | 1 files changed, 5 insertions(+), 5 deletions(-) [+] |
line wrap: on
line diff
--- a/libvo/vo_directx.c Sun Feb 23 19:00:11 2003 +0000 +++ b/libvo/vo_directx.c Sun Feb 23 19:18:28 2003 +0000 @@ -811,15 +811,15 @@ WNDCLASS wc; if(arg) { - if(!strcmp(arg,"noaccel")) + if(strstr(arg,"noaccel")) { mp_msg(MSGT_VO,MSGL_V,"<vo_directx><INFO>disabled overlay\n"); nooverlay = 1; } - else + if(strstr(arg,"ontop")) { - mp_msg(MSGT_VO,MSGL_ERR,"<vo_directx><ERROR>unknown subdevice: %s\n",arg); - return ENOSYS; + mp_msg(MSGT_VO,MSGL_V,"<vo_directx><INFO>window ontop\n"); + ontop = 1; } } if (Directx_InitDirectDraw()!= 0)return 1; //init DirectDraw @@ -1158,7 +1158,7 @@ SetWindowPlacement(hWnd,&window_placement); /*change style and restore the window*/ SetWindowLong(hWnd,GWL_STYLE,WS_OVERLAPPEDWINDOW|WS_SIZEBOX); - window_placement.showCmd = SW_SHOWNORMAL; + window_placement.showCmd = SW_RESTORE; SetWindowPlacement(hWnd,&window_placement ); /*restore backgroundcolor*/ SetClassLongA(hWnd,GCL_HBRBACKGROUND,(int)CreateSolidBrush(windowcolor));