diff --git a/confluent_client/confluent/vnc.py b/confluent_client/confluent/vnc.py index 62038427..8d12a24d 100644 --- a/confluent_client/confluent/vnc.py +++ b/confluent_client/confluent/vnc.py @@ -13,7 +13,7 @@ MYPIXFORMAT = bytearray([ 0, 255, # red max 0, 255, # green max 0, 255, # blue max - 16, 8, 0, # red shift, green shift, blue shift + 0, 8, 16, # red shift, green shift, blue shift 0, 0, 0 # padding ]) @@ -272,4 +272,4 @@ class VNCClient: return length async def close(self): self.writer.close() - await self.writer.wait_closed() \ No newline at end of file + await self.writer.wait_closed()