diff options
author | Jay Sorg <jay.sorg@gmail.com> | 2012-05-21 10:38:32 -0700 |
---|---|---|
committer | Jay Sorg <jay.sorg@gmail.com> | 2012-05-21 10:38:32 -0700 |
commit | e09f14e6d47f1b67a42f8765b87f4eb405616319 (patch) | |
tree | 20c0b175f358d26c932db7db1885283ccf52b65e /xrdp | |
parent | d61f32865d25f0388fb5e409ef54e3dc641dab15 (diff) | |
download | xrdp-proprietary-e09f14e6d47f1b67a42f8765b87f4eb405616319.tar.gz xrdp-proprietary-e09f14e6d47f1b67a42f8765b87f4eb405616319.zip |
don't jpeg compress fonts
Diffstat (limited to 'xrdp')
-rw-r--r-- | xrdp/xrdp_cache.c | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/xrdp/xrdp_cache.c b/xrdp/xrdp_cache.c index 59c7c98b..32b32f72 100644 --- a/xrdp/xrdp_cache.c +++ b/xrdp/xrdp_cache.c @@ -280,7 +280,8 @@ xrdp_cache_add_bitmap(struct xrdp_cache* self, struct xrdp_bitmap* bitmap, { libxrdp_orders_send_bitmap2(self->session, bitmap->width, bitmap->height, bitmap->bpp, - bitmap->data, cache_id, cache_idx); + bitmap->data, cache_id, cache_idx, + hints); } else { |