2
0
mirror of https://github.com/xcat2/confluent.git synced 2026-06-02 17:28:32 +00:00

Fix pixel format to be RGBA actually

This commit is contained in:
Jarrod Johnson
2026-05-14 09:16:52 -04:00
parent 38fe07ea28
commit 0026c3f62a
+2 -2
View File
@@ -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()
await self.writer.wait_closed()