diff options
author | jsorg71 <jsorg71> | 2006-09-22 05:28:47 +0000 |
---|---|---|
committer | jsorg71 <jsorg71> | 2006-09-22 05:28:47 +0000 |
commit | de8343eca5e37848b58e5e5b77b3d94ebbf929eb (patch) | |
tree | 21287897f783238b747fc5f9f15d34f2c8c79354 /xup | |
parent | 7cdd7191a4243d04b14315f9ae73f1bebaff9953 (diff) | |
download | xrdp-proprietary-de8343eca5e37848b58e5e5b77b3d94ebbf929eb.tar.gz xrdp-proprietary-de8343eca5e37848b58e5e5b77b3d94ebbf929eb.zip |
fix invalidate message
Diffstat (limited to 'xup')
-rw-r--r-- | xup/xup.c | 8 |
1 files changed, 6 insertions, 2 deletions
@@ -254,10 +254,14 @@ lib_mod_connect(struct mod* mod) s_push_layer(s, iso_hdr, 4); out_uint16_le(s, 103); out_uint32_le(s, 200); + /* x and y */ + i = 0; + out_uint32_le(s, i); + /* width and height */ + i = ((mod->width & 0xffff) << 16) | mod->height; + out_uint32_le(s, i); out_uint32_le(s, 0); out_uint32_le(s, 0); - out_uint32_le(s, mod->width); - out_uint32_le(s, mod->height); s_mark_end(s); len = s->end - s->data; s_pop_layer(s, iso_hdr); |