1
mirror of https://github.com/mpv-player/mpv synced 2025-01-20 21:07:29 +01:00

key handling fix

git-svn-id: svn://svn.mplayerhq.hu/mplayer/trunk@1785 b3059339-0415-0410-9bf9-f77b7e298cf2
This commit is contained in:
pontscho 2001-08-30 20:51:35 +00:00
parent cc6c56b08e
commit 6d74aa879d
2 changed files with 1 additions and 10 deletions

View File

@ -539,9 +539,6 @@ void mplMainKeyHandle( int State,int Type,int Key )
case wsGrayMul: msg=evIncVolume; break;
case wsGrayDiv: msg=evDecVolume; break;
case wsGrayPlus: msg=evIncAudioBufDelay; break;
case wsGrayMinus: msg=evDecAudioBufDelay; break;
case wsEnter: msg=evPlay; break;
case wsSpace: msg=evPause; break;
case wsa:
@ -560,6 +557,7 @@ void mplMainKeyHandle( int State,int Type,int Key )
case wsS: msg=evStop; break;
case wsp:
case wsP: msg=evPlayList; break;
default: mplayer_put_key( Key ); return;
}
if ( ( msg != evNone )&&( Type == wsKeyPressed ) )
{

View File

@ -125,10 +125,3 @@ void mplAbsSeek( float s )
// ---
}
void mplIncAudioBufDelay( void )
{
}
void mplDecAudioBufDelay( void )
{
}