# HG changeset patch # User Matti Hamalainen # Date 1588225881 -10800 # Node ID 6f2572b6f151f5cfbf917e40dca6e33e26976b95 # Parent e1a71d9eaedeef83fb84b22eff75c6061f96a6e9 Comment out fields in DMC64ImageConvSpec that are not currently used. Improve comments of the fields that are. diff -r e1a71d9eaede -r 6f2572b6f151 tools/lib64gfx.h --- a/tools/lib64gfx.h Wed Apr 29 13:35:56 2020 +0300 +++ b/tools/lib64gfx.h Thu Apr 30 08:51:21 2020 +0300 @@ -186,11 +186,14 @@ typedef struct { - int dither; // Dither mode (D64_DITH_*) - BOOL aspect; // Render using pixel aspectX/aspectY + DMPalette *pal; // Use this palette custom palette if != NULL + DMC64Palette *cpal; // If DMC64ImageConvSpec::pal == NULL, use this C64 palette - DMPalette *pal; // Use this palette - DMC64Palette *cpal; // If ^pal == NULL, use this C64 palette +/* + // XXX These are not actually used yet (if ever) + int dither; // Dither mode (D64_DITH_*) + BOOL aspect; // Render using pixel aspectX/aspectY, FALSE = par=1:1 +*/ } DMC64ImageConvSpec;