From 3dfcebeed6368e681715e0732f0ee983c32f2daa Mon Sep 17 00:00:00 2001 From: "Adam D. Ruppe" Date: Mon, 21 Dec 2015 09:40:35 -0500 Subject: [PATCH] 64 bit bug --- simpledisplay.d | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/simpledisplay.d b/simpledisplay.d index 986a33d..c47cf54 100644 --- a/simpledisplay.d +++ b/simpledisplay.d @@ -27,6 +27,8 @@ moving windows. resizing windows. + hide cursor, capture cursor, change cursor. + REMEMBER: simpledisplay does NOT have to do everything! It just needs to make sure the pieces are there to do its job easily and make other jobs possible. */ @@ -4456,7 +4458,7 @@ version(X11) { Pixmap buffer; XIC xic; // input context int curHidden = 0; // counter - int blankCurPtr = 0; + Cursor blankCurPtr = 0; void delegate(XEvent) setSelectionHandler; void delegate(in char[]) getSelectionHandler;