summaryrefslogtreecommitdiffstats
path: root/rfb
diff options
context:
space:
mode:
authordscho <dscho>2004-06-07 11:43:00 +0000
committerdscho <dscho>2004-06-07 11:43:00 +0000
commitfefcb9188a0810577ee8d17a384af19c39d8a49e (patch)
tree7dfa2bb0b08c235324f0d31be13b1f17aaf3c2ad /rfb
parentfc45b97d6503cf7fc72cdacd4611055c5554e77c (diff)
downloadlibtdevnc-fefcb9188a0810577ee8d17a384af19c39d8a49e.tar.gz
libtdevnc-fefcb9188a0810577ee8d17a384af19c39d8a49e.zip
fix cursor trails (when not using cursor encoding and moving the cursor,
the redrawn part of the screen didn't get updated, and so left cursor trails).
Diffstat (limited to 'rfb')
-rw-r--r--rfb/rfb.h2
1 files changed, 1 insertions, 1 deletions
diff --git a/rfb/rfb.h b/rfb/rfb.h
index d472684..ae62fb2 100644
--- a/rfb/rfb.h
+++ b/rfb/rfb.h
@@ -248,7 +248,7 @@ typedef struct _rfbScreenInfo
struct _rfbClientRec* rfbClientHead;
/* cursor */
- int cursorX, cursorY,underCursorBufferLen;
+ int cursorX, cursorY,oldCursorX,oldCursorY,underCursorBufferLen;
char* underCursorBuffer;
rfbBool dontConvertRichCursorToXCursor;
struct rfbCursor* cursor;