summaryrefslogtreecommitdiffstats
path: root/Gui
diff options
context:
space:
mode:
authoralex <alex@b3059339-0415-0410-9bf9-f77b7e298cf2>2002-03-15 23:22:36 +0000
committeralex <alex@b3059339-0415-0410-9bf9-f77b7e298cf2>2002-03-15 23:22:36 +0000
commit642e989c5b231834b55208a77c6213aea7a8f337 (patch)
tree6d1a57f36f810ffa039b1300130708bfbfbfc5b9 /Gui
parent7ea3f35c74daa9010572c852d9405d06e973397a (diff)
downloadmpv-642e989c5b231834b55208a77c6213aea7a8f337.tar.bz2
mpv-642e989c5b231834b55208a77c6213aea7a8f337.tar.xz
workaround to compile without new-input support
git-svn-id: svn://svn.mplayerhq.hu/mplayer/trunk@5121 b3059339-0415-0410-9bf9-f77b7e298cf2
Diffstat (limited to 'Gui')
-rw-r--r--Gui/interface.c2
1 files changed, 2 insertions, 0 deletions
diff --git a/Gui/interface.c b/Gui/interface.c
index 7a2ad51a68..376a8ef056 100644
--- a/Gui/interface.c
+++ b/Gui/interface.c
@@ -60,6 +60,7 @@ void guiGetEvent( int type,char * arg )
case guiSetPause: guiIntfStruct.Playing=2; mplState(); break;
}
break;
+#ifdef HAVE_NEW_INPUT
case guiIEvent:
printf( "cmd: %d\n",(int)arg );
switch( (int)arg )
@@ -74,6 +75,7 @@ void guiGetEvent( int type,char * arg )
mplEventHandling( guiCMDArray[ (int)arg - MP_CMD_GUI_EVENTS - 1 ],0 );
}
break;
+#endif
}
}