diff options
author | alex <alex@b3059339-0415-0410-9bf9-f77b7e298cf2> | 2002-03-15 23:22:36 +0000 |
---|---|---|
committer | alex <alex@b3059339-0415-0410-9bf9-f77b7e298cf2> | 2002-03-15 23:22:36 +0000 |
commit | 642e989c5b231834b55208a77c6213aea7a8f337 (patch) | |
tree | 6d1a57f36f810ffa039b1300130708bfbfbfc5b9 | |
parent | 7ea3f35c74daa9010572c852d9405d06e973397a (diff) |
workaround to compile without new-input support
git-svn-id: svn://svn.mplayerhq.hu/mplayer/trunk@5121 b3059339-0415-0410-9bf9-f77b7e298cf2
-rw-r--r-- | Gui/interface.c | 2 |
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 } } |