changeset 2318:b2d8b054b2f7

Comment adjustments.
author Matti Hamalainen <ccr@tnsp.org>
date Tue, 03 Sep 2019 10:15:41 +0300
parents a566700297c9
children 5b4071a74289
files tools/lib64gfx.h
diffstat 1 files changed, 7 insertions(+), 6 deletions(-) [+]
line wrap: on
line diff
--- a/tools/lib64gfx.h	Tue Aug 27 12:24:54 2019 +0300
+++ b/tools/lib64gfx.h	Tue Sep 03 10:15:41 2019 +0300
@@ -137,7 +137,7 @@
 };
 
 
-// "Subjects" of operations (op->subject)
+// "Subjects" of operations (DMC64EncDecOp::subject)
 enum
 {
     DS_COLOR_RAM,
@@ -159,7 +159,7 @@
 };
 
 
-// Operation flags (op->flags)
+// Operation flags (DMC64EncDecOp::flags)
 enum
 {
     DF_NORMAL	= 0xffff,
@@ -178,11 +178,11 @@
 
 typedef struct
 {
-    int dither;      // Dither mode (D64_DITH_*)
-    BOOL aspect;     // Correct pixel aspect ratio?
+    int dither;          // Dither mode (D64_DITH_*)
+    BOOL aspect;         // Correct pixel aspect ratio?
 
-    DMPalette *pal;     // Use this palette
-    DMC64Palette *cpal; // If ^pal == NULL, use this C64 palette
+    DMPalette *pal;      // Use this palette
+    DMC64Palette *cpal;  // If ^pal == NULL, use this C64 palette
 } DMC64ImageConvSpec;
 
 
@@ -199,6 +199,7 @@
     BOOL multicolor, xexpand, yexpand;
     int color;   // Color
     int sprnum;  // Physical sprite number for priority checking
+
     Uint8 *data; // "const" pointer to sprite data, do not deallocate
 } DMC64Sprite;