citybuilding-tools icon indicating copy to clipboard operation
citybuilding-tools copied to clipboard

Error on green color computation

Open captnfab opened this issue 9 months ago • 1 comments

Current computation for green is:

 ((c & 0x3e0) << 6)  | ((c & 0x300))

But should be

 ((c & 0x3e0) << 6)  | ((c & 0x300) << 1)

captnfab avatar May 10 '24 19:05 captnfab

Fixed by #14

captnfab avatar May 10 '24 19:05 captnfab