1
0
mirror of https://frontier.innolan.net/github/AmigaExamples.git synced 2026-01-11 23:17:50 +00:00

fixed debug output

This commit is contained in:
alpine9000
2016-05-09 18:06:32 +10:00
parent da9275a736
commit 336e1347da

View File

@ -88,7 +88,7 @@ palette_output(imagecon_image_t* ic, char* outFilename)
for (int i = 0; i < (config.ehbMode ? ic->numColors/2 : ic->numColors); i++) {
if (config.verbose) {
printf("%02d: hex=%03x r=%03d g=%03d b=%03d a=%03d\n", i , ic->palette[i].r << 8 | ic->palette[i].g << 4 | ic->palette[i].b, ic->palette[i].r, ic->palette[i].g, ic->palette[i].b, ic->palette[i].a);
printf("%02d: hex=%03x r=%03d g=%03d b=%03d a=%03d\n", i , RGB24TORGB12(ic->palette[i].r) << 8 | RGB24TORGB12(ic->palette[i].g) << 4 | RGB24TORGB12(ic->palette[i].b), ic->palette[i].r, ic->palette[i].g, ic->palette[i].b, ic->palette[i].a);
}
if (paletteFP) {