Did you ever figure out why it did not like your custom image?
This sounds like the chrome cast I always wanted, time to order some.
if uint16(^(CurrentChunk >> 15)) == 65534 {
What a terrible way to write if CurrentChunk & 0x8000. I know OP pointed it out, but it’s worth reiterating how awful that is.
if CurrentChunk & 0x8000
Did you ever figure out why it did not like your custom image?
This sounds like the chrome cast I always wanted, time to order some.
What a terrible way to write
if CurrentChunk & 0x8000
. I know OP pointed it out, but it’s worth reiterating how awful that is.