ZealOS/src/Home/PaletteEditor/PaletteGod.ZC

15 lines
186 B
HolyC
Raw Normal View History

2021-11-25 10:01:09 +00:00
public U0 PaletteGodGenerate()
{
I64 i;
CBGR24 palette;
for (i = 0; i < 16; i++)
{
palette = GodPick & 0xFFFFFF;
gr_palette[i] = palette;
LFBFlush;
}
}
PaletteGodGenerate;