changeset 2511:6f2572b6f151

Comment out fields in DMC64ImageConvSpec that are not currently used. Improve comments of the fields that are.
author Matti Hamalainen <ccr@tnsp.org>
date Thu, 30 Apr 2020 08:51:21 +0300
parents e1a71d9eaede
children 14ed64742010
files tools/lib64gfx.h
diffstat 1 files changed, 7 insertions(+), 4 deletions(-) [+]
line wrap: on
line diff
--- 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;