[MAIN] Fix colors

This commit is contained in:
fsandalinas 2022-10-02 17:37:52 -03:00
parent 523b48c1b0
commit 561b8ebfa3

View File

@ -12,9 +12,9 @@ draw_mem(struct toyboxica *t) {
if (p != 0) {
DrawRectangle(x * z, y * z, z, z,
(Color){
(p * 8) % 130,
(p * 7) % 44,
(p * 3) % 73,
(p * 8) % 244,
(p * 7) % 221,
(p * 9) % 233,
255});
}
if (x == 0 || x == w-1) DrawPixel(x * z, y * z, LIME);