diff options
| author | Christian Beier <dontmind@freeshell.org> | 2017-03-26 14:33:02 +0200 |
|---|---|---|
| committer | Christian Beier <dontmind@freeshell.org> | 2017-03-26 14:33:02 +0200 |
| commit | a17a35a8344cc2861fa3accf75e947c9f80265f9 (patch) | |
| tree | 44e23decd21c5caf5fb09f6c286b8e980ee120e5 /libvncclient/corre.c | |
| parent | 0d0a2fc2b5567365b142a77fa961b0c9658b6010 (diff) | |
| parent | e03b5750f84ce9816d5c6055ba3da34755aff934 (diff) | |
| download | libtdevnc-a17a35a8344cc2861fa3accf75e947c9f80265f9.tar.gz libtdevnc-a17a35a8344cc2861fa3accf75e947c9f80265f9.zip | |
Merge branch 'ldmnyblzs-circle'
Diffstat (limited to 'libvncclient/corre.c')
| -rw-r--r-- | libvncclient/corre.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/libvncclient/corre.c b/libvncclient/corre.c index baf91cc..66e3b08 100644 --- a/libvncclient/corre.c +++ b/libvncclient/corre.c @@ -46,7 +46,7 @@ HandleCoRREBPP (rfbClient* client, int rx, int ry, int rw, int rh) if (!ReadFromRFBServer(client, (char *)&pix, sizeof(pix))) return FALSE; - FillRectangle(client, rx, ry, rw, rh, pix); + client->GotFillRect(client, rx, ry, rw, rh, pix); if (!ReadFromRFBServer(client, client->buffer, hdr.nSubrects * (4 + (BPP / 8)))) return FALSE; @@ -61,7 +61,7 @@ HandleCoRREBPP (rfbClient* client, int rx, int ry, int rw, int rh) w = *ptr++; h = *ptr++; - FillRectangle(client, rx+x, ry+y, w, h, pix); + client->GotFillRect(client, rx+x, ry+y, w, h, pix); } return TRUE; |
