0
0
mirror of https://github.com/mpv-player/mpv.git synced 2024-09-20 12:02:23 +02:00
git-svn-id: svn://svn.mplayerhq.hu/mplayer/trunk@6158 b3059339-0415-0410-9bf9-f77b7e298cf2
This commit is contained in:
alex 2002-05-23 14:07:11 +00:00
parent a62815933c
commit 4be3451cf5

View File

@ -44,7 +44,7 @@ static int control(struct vf_instance_s* vf,
int request, void* data){
switch(request){
case VFCTRL_DRAW_OSD:
if(!vo_config_count) CONTROL_FALSE; // vo not configured?
if(!vo_config_count) return CONTROL_FALSE; // vo not configured?
video_out->draw_osd();
return CONTROL_TRUE;
}