summaryrefslogtreecommitdiffstats
path: root/mplayer.c
diff options
context:
space:
mode:
authorpontscho <pontscho@b3059339-0415-0410-9bf9-f77b7e298cf2>2002-05-25 09:46:37 +0000
committerpontscho <pontscho@b3059339-0415-0410-9bf9-f77b7e298cf2>2002-05-25 09:46:37 +0000
commit0a581e3bf3cb184be828b58a2c6bbd64a568a4d8 (patch)
treeee983c70a8bc17d12eb4d8d73453351ed3a0e983 /mplayer.c
parentac46b4486bb52f043b078197a78a7df16cca969d (diff)
downloadmpv-0a581e3bf3cb184be828b58a2c6bbd64a568a4d8.tar.bz2
mpv-0a581e3bf3cb184be828b58a2c6bbd64a568a4d8.tar.xz
fix two small bug and add multimedia keyboard support ( i tested with Acer AirKey V only )
git-svn-id: svn://svn.mplayerhq.hu/mplayer/trunk@6184 b3059339-0415-0410-9bf9-f77b7e298cf2
Diffstat (limited to 'mplayer.c')
-rw-r--r--mplayer.c6
1 files changed, 5 insertions, 1 deletions
diff --git a/mplayer.c b/mplayer.c
index 890eb2a4b6..b7aee9f196 100644
--- a/mplayer.c
+++ b/mplayer.c
@@ -1934,7 +1934,11 @@ if(auto_quality>0){
video_out->control(VOCTRL_RESUME, NULL); // resume video
(void)GetRelativeTime(); // keep TF around FT in next cycle
#ifdef HAVE_NEW_GUI
- if (use_gui) guiGetEvent( guiCEvent,(char *)guiSetPlay );
+ if (use_gui)
+ {
+ if ( guiIntfStruct.Playing == guiSetStop ) goto goto_next_file;
+ guiGetEvent( guiCEvent,(char *)guiSetPlay );
+ }
#endif
}