diff options
| author | Balazs Ludmany <ludmany.balazs@cloud.bme.hu> | 2016-06-21 10:03:52 +0200 |
|---|---|---|
| committer | Balazs Ludmany <ludmany.balazs@cloud.bme.hu> | 2016-06-29 09:46:10 +0200 |
| commit | a01a18df1d44ec875708d5fc9d6c4e0934535974 (patch) | |
| tree | 7bafd41f957a76e6c8b204791d7e7dd39fec0b02 /libvncclient/zlib.c | |
| parent | 1f8c443cbc439e79d9e2c8b92643b65b7332db89 (diff) | |
| download | libtdevnc-a01a18df1d44ec875708d5fc9d6c4e0934535974.tar.gz libtdevnc-a01a18df1d44ec875708d5fc9d6c4e0934535974.zip | |
Add function pointers for every type of rectangle
Diffstat (limited to 'libvncclient/zlib.c')
| -rw-r--r-- | libvncclient/zlib.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/libvncclient/zlib.c b/libvncclient/zlib.c index e872d40..fc6f138 100644 --- a/libvncclient/zlib.c +++ b/libvncclient/zlib.c @@ -142,7 +142,7 @@ HandleZlibBPP (rfbClient* client, int rx, int ry, int rw, int rh) if ( inflateResult == Z_OK ) { /* Put the uncompressed contents of the update on the screen. */ - CopyRectangle(client, (uint8_t *)client->raw_buffer, rx, ry, rw, rh); + client->GotBitmap(client, (uint8_t *)client->raw_buffer, rx, ry, rw, rh); } else { |
