this repo has no description
0
fork

Configure Feed

Select the types of activity you want to include in your feed.

fix cart.png palette inconsistency with custom config (#2643)

authored by

Miguel and committed by
GitHub
461b1a4c 630199fa

+7 -1
+7 -1
src/studio/screens/console.c
··· 2552 2552 2553 2553 u32* ptr = img.values + PaddingTop * CoverWidth + PaddingLeft; 2554 2554 const u8* screen = tic->ram->vram.screen.data; 2555 - const tic_rgb* pal = getConfig(console->studio)->cart->bank0.palette.vbank0.colors; 2555 + const tic_rgb Sweetie16[] = { 2556 + {0x1a, 0x1c, 0x2c}, {0x5d, 0x27, 0x5d}, {0xb1, 0x3e, 0x53}, {0xef, 0x7d, 0x57}, 2557 + {0xff, 0xcd, 0x75}, {0xa7, 0xf0, 0x70}, {0x38, 0xb7, 0x64}, {0x25, 0x71, 0x79}, 2558 + {0x29, 0x36, 0x6f}, {0x3b, 0x5d, 0xc9}, {0x41, 0xa6, 0xf6}, {0x73, 0xef, 0xf7}, 2559 + {0xf4, 0xf4, 0xf4}, {0x94, 0xb0, 0xc2}, {0x56, 0x6c, 0x86}, {0x33, 0x3c, 0x57} 2560 + }; 2561 + const tic_rgb* pal = Sweetie16; 2556 2562 2557 2563 for(s32 y = 0; y < Height; y++) 2558 2564 for(s32 x = 0; x < Width; x++)