1
mirror of https://github.com/mpv-player/mpv synced 2025-01-16 22:37:28 +01:00

removes old input code (forgot to commit this)

git-svn-id: svn://svn.mplayerhq.hu/mplayer/trunk@7309 b3059339-0415-0410-9bf9-f77b7e298cf2
This commit is contained in:
alex 2002-09-07 20:30:17 +00:00
parent da6df2b165
commit 3e3af1af58

View File

@ -1,9 +1,6 @@
#include "config.h"
#include <stdlib.h>
#ifdef HAVE_NEW_INPUT
#include "../input/input.h"
int mpdemux_check_interrupt(int time) {
mp_cmd_t* cmd;
@ -26,12 +23,3 @@ int mpdemux_check_interrupt(int time) {
return 0;
}
}
#else // Default function
int mpdemux_check_interrupt(int time){
usec_sleep(time*1000);
return 0;
}
#endif