citybuilding-tools
citybuilding-tools copied to clipboard
Error on green color computation
Current computation for green is:
((c & 0x3e0) << 6) | ((c & 0x300))
But should be
((c & 0x3e0) << 6) | ((c & 0x300) << 1)
Fixed by #14