# HG changeset patch # User albeu # Date 1011460977 0 # Node ID d0b80b2a136f64d6ed2af1ded170363af5724ef0 # Parent f96a2b9b41eb51a6204b1d49b6f86b52f8aa0170 Fixed bug with -frames option : don't quit, go to next file !! diff -r f96a2b9b41eb -r d0b80b2a136f mplayer.c --- a/mplayer.c Sat Jan 19 17:02:50 2002 +0000 +++ b/mplayer.c Sat Jan 19 17:22:57 2002 +0000 @@ -1401,7 +1401,7 @@ if(play_n_frames>=0){ --play_n_frames; - if(play_n_frames<0) exit_player(MSGTR_Exit_frames); + if(play_n_frames<0) eof = PT_NEXT_ENTRY; } vo_pts=sh_video->timer*90000.0;