diff options
author | Bart Warmerdam <bartw@xs4all.nl> | 2013-01-20 11:50:27 +0100 |
---|---|---|
committer | Bart Warmerdam <bartw@xs4all.nl> | 2013-01-20 11:50:27 +0100 |
commit | 69a721f7cbc40960524a4d4ec567a95b02d48b63 (patch) | |
tree | fdb57b1ee4bf75dad7ff3fef60bca09dceafe93a /libxrdp/xrdp_orders.c | |
parent | 4efe900f2d3ba4a2a3d60d2b68b1a90b739b9c2d (diff) | |
download | xrdp-proprietary-69a721f7cbc40960524a4d4ec567a95b02d48b63.tar.gz xrdp-proprietary-69a721f7cbc40960524a4d4ec567a95b02d48b63.zip |
Revert "Use correct RGB byte odering for uncompressed bitmaps (ms-rdpbcgr p192), RED=lsB, BLUE=msB"
This reverts commit 4efe900f2d3ba4a2a3d60d2b68b1a90b739b9c2d.
Diffstat (limited to 'libxrdp/xrdp_orders.c')
-rw-r--r-- | libxrdp/xrdp_orders.c | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/libxrdp/xrdp_orders.c b/libxrdp/xrdp_orders.c index 7a17759c..bb95aa71 100644 --- a/libxrdp/xrdp_orders.c +++ b/libxrdp/xrdp_orders.c @@ -1872,9 +1872,9 @@ xrdp_orders_send_raw_bitmap(struct xrdp_orders *self, if (Bpp == 3) { pixel = GETPIXEL32(data, j, i, width); - out_uint8(self->out_s, pixel); - out_uint8(self->out_s, pixel >> 8); out_uint8(self->out_s, pixel >> 16); + out_uint8(self->out_s, pixel >> 8); + out_uint8(self->out_s, pixel); } else if (Bpp == 2) { @@ -2093,9 +2093,9 @@ xrdp_orders_send_raw_bitmap2(struct xrdp_orders *self, if (Bpp == 3) { pixel = GETPIXEL32(data, j, i, width); - out_uint8(self->out_s, pixel); - out_uint8(self->out_s, pixel >> 8); out_uint8(self->out_s, pixel >> 16); + out_uint8(self->out_s, pixel >> 8); + out_uint8(self->out_s, pixel); } else if (Bpp == 2) { |