1
0
mirror of https://github.com/mpv-player/mpv synced 2024-12-23 23:32:26 +00:00
git-svn-id: svn://svn.mplayerhq.hu/mplayer/trunk@3955 b3059339-0415-0410-9bf9-f77b7e298cf2
This commit is contained in:
arpi 2002-01-02 19:14:05 +00:00
parent 0b24b1880c
commit 3f2a559bab

View File

@ -50,13 +50,13 @@ int WinID=-1;
void vo_hidecursor ( Display *disp , Window win )
{
if(WinID==0) return; // do not hide, if we're playing at rootwin
Cursor no_ptr;
Pixmap bm_no;
XColor black,dummy;
Colormap colormap;
static unsigned char bm_no_data[] = { 0,0,0,0, 0,0,0,0 };
if(WinID==0) return; // do not hide, if we're playing at rootwin
colormap = DefaultColormap(disp,DefaultScreen(disp));
XAllocNamedColor(disp,colormap,"black",&black,&dummy);