From 8833c0dd7928b7149430e8c7aaae90360405cdff Mon Sep 17 00:00:00 2001 From: dborth Date: Mon, 3 Apr 2017 09:28:22 -0600 Subject: [PATCH] GUACAMOLE-262: set VNC trueColour flag to 1 instead of 255 --- src/protocols/vnc/display.c | 1 + 1 file changed, 1 insertion(+) diff --git a/src/protocols/vnc/display.c b/src/protocols/vnc/display.c index 22de084a..7273e4b3 100644 --- a/src/protocols/vnc/display.c +++ b/src/protocols/vnc/display.c @@ -153,6 +153,7 @@ void guac_vnc_copyrect(rfbClient* client, int src_x, int src_y, int w, int h, in } void guac_vnc_set_pixel_format(rfbClient* client, int color_depth) { + client->format.trueColour = 1; switch(color_depth) { case 8: client->format.depth = 8;