Fix incorrect porting of XCreateFontCursor()

This commit is contained in:
Arnaud Fontaine 2008-03-27 05:19:29 +00:00 committed by Julien Danjou
parent 6db3cd48d8
commit fa5bc02103
1 changed files with 2 additions and 2 deletions

View File

@ -171,7 +171,7 @@ create_font_cursor(unsigned int cursor_font)
xcb_create_glyph_cursor (globalconf.connection, cursor, font, font,
cursor_font, cursor_font + 1,
0, 0, 0,
0, 0, 0);
65535, 65535, 65535);
return cursor;
}