comparison tools/lib64gfx.h @ 2507:5c1e3744434b

Remove the unused D64_CHCFG_* stuff.
author Matti Hamalainen <ccr@tnsp.org>
date Wed, 29 Apr 2020 01:21:51 +0300
parents 0b1928ed902f
children 6f2572b6f151
comparison
equal deleted inserted replaced
2506:609c6bcf0dac 2507:5c1e3744434b
96 { 96 {
97 D64_FLI_8 = 8, 97 D64_FLI_8 = 8,
98 }; 98 };
99 99
100 100
101 // Charmode screen memory configuration
102 enum
103 {
104 D64_CHCFG_SCREEN, // Use screen memory
105 D64_CHCFG_LINEAR = 1, // Generate linear pattern so that first line
106 // of chars is 0-39, second 40-79, up to 255.
107 };
108
109
110 // Various extra settings (see DMC64Image::extraInfo[]) 101 // Various extra settings (see DMC64Image::extraInfo[])
111 enum 102 enum
112 { 103 {
113 D64_EI_MODE = 0, // Actual mode, if the format supports several 104 D64_EI_MODE = 0, // Actual mode, if the format supports several
114 105