summaryrefslogtreecommitdiffstats
path: root/mplayer.c
diff options
context:
space:
mode:
authoralbeu <albeu@b3059339-0415-0410-9bf9-f77b7e298cf2>2002-01-19 17:22:57 +0000
committeralbeu <albeu@b3059339-0415-0410-9bf9-f77b7e298cf2>2002-01-19 17:22:57 +0000
commit5890ac759ae75e5fe7385d1cc066225241b502d5 (patch)
tree183993d8e792b8ef16b8e8dc0a1b46ff3731541d /mplayer.c
parent739a77699a8ace283f4fbabbe59a01bec6ad0767 (diff)
downloadmpv-5890ac759ae75e5fe7385d1cc066225241b502d5.tar.bz2
mpv-5890ac759ae75e5fe7385d1cc066225241b502d5.tar.xz
Fixed bug with -frames option : don't quit, go to next file !!
git-svn-id: svn://svn.mplayerhq.hu/mplayer/trunk@4261 b3059339-0415-0410-9bf9-f77b7e298cf2
Diffstat (limited to 'mplayer.c')
-rw-r--r--mplayer.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/mplayer.c b/mplayer.c
index 40425e90f5..51ba40a89e 100644
--- a/mplayer.c
+++ b/mplayer.c
@@ -1401,7 +1401,7 @@ while(!eof){
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;