# HG changeset patch # User pontscho # Date 987382172 0 # Node ID edea605a4a5d4a3ddc56228e4a273d1256157956 # Parent 5062115afefd3f270fd6ad8d59c1ef87882d649b add mixer support diff -r 5062115afefd -r edea605a4a5d libvo/x11_common.c --- a/libvo/x11_common.c Mon Apr 16 00:44:29 2001 +0000 +++ b/libvo/x11_common.c Mon Apr 16 00:49:32 2001 +0000 @@ -100,6 +100,10 @@ case wsGrayMinus: mplayer_put_key('-'); break; case wsPlus: case wsGrayPlus: mplayer_put_key('+'); break; + case wsGrayMul: + case wsMul: mplayer_put_key('*'); break; + case wsGrayDiv: + case wsDiv: mplayer_put_key('/'); break; default: if((key>='a' && key<='z')||(key>='A' && key<='Z')) mplayer_put_key(key); }