# HG changeset patch # User Matti Hamalainen # Date 1560466685 -10800 # Node ID b259312ddb59e7572f47c14c655c110dda57ec6d # Parent 455a3849b8ac70f195ca68d0a455e164467d1e4b Add description field to DMC64Palette. diff -r 455a3849b8ac -r b259312ddb59 tools/lib64gfx.c --- a/tools/lib64gfx.c Fri Jun 14 01:56:47 2019 +0300 +++ b/tools/lib64gfx.c Fri Jun 14 01:58:05 2019 +0300 @@ -18,7 +18,8 @@ DMC64Palette dmC64DefaultPalettes[] = { { - "Pepto", + "pepto", + "Pepto's classic (default)", { { 0x00, 0x00, 0x00, 0xff }, { 0xFF, 0xFF, 0xFF, 0xff }, @@ -39,6 +40,7 @@ }, }, { + "colodore", "Colodore", { { 0x00, 0x00, 0x00, 0xff }, @@ -60,6 +62,7 @@ }, }, { + "vice3", "VICE 3.3", { { 0x00, 0x00, 0x00, 0xff }, diff -r 455a3849b8ac -r b259312ddb59 tools/lib64gfx.h --- a/tools/lib64gfx.h Fri Jun 14 01:56:47 2019 +0300 +++ b/tools/lib64gfx.h Fri Jun 14 01:58:05 2019 +0300 @@ -154,6 +154,7 @@ typedef struct { char *name; + char *desc; DMColor colors[D64_NCOLORS]; } DMC64Palette;