Fix return value of VOCTRL_FULLSCREEN

git-svn-id: svn://svn.mplayerhq.hu/mplayer/trunk@4791 b3059339-0415-0410-9bf9-f77b7e298cf2
This commit is contained in:
atmos4 2002-02-21 16:17:15 +00:00
parent 2eb3f24dc1
commit 2423d041c2
2 changed files with 2 additions and 1 deletions

View File

@ -1327,7 +1327,7 @@ static uint32_t control(uint32_t request, void *data, ...)
set_fullmode(priv->fullmode);
if(verbose > 1) printf("SDL: Set fullscreen mode\n");
}
//return VO_TRUE; // XXX what should VOCTRL_FULLSCREEN return?
return VO_TRUE;
}
return VO_NOTIMPL;

View File

@ -650,6 +650,7 @@ static uint32_t control(uint32_t request, void *data, ...)
vo_fs_oldheight = -1;
XSync(mDisplay, False);
}
return VO_TRUE;
}
return VO_NOTIMPL;
}