comparison libgfx.c @ 472:0359697eeb46

Oops, the ARAW palette output should use dc.w, not dw.b .. :P
author Matti Hamalainen <ccr@tnsp.org>
date Wed, 07 Nov 2012 00:55:12 +0200
parents 80d09ea85e75
children b89598501cec
comparison
equal deleted inserted replaced
471:3f5163208ef6 472:0359697eeb46
227 else 227 else
228 color = 0; 228 color = 0;
229 229
230 fprintf(fp, "%s%s $%04X\n", 230 fprintf(fp, "%s%s $%04X\n",
231 indent != NULL ? indent : "\t", 231 indent != NULL ? indent : "\t",
232 type != NULL ? type : "dw.b", 232 type != NULL ? type : "dc.w",
233 color); 233 color);
234 } 234 }
235 235
236 return DMERR_OK; 236 return DMERR_OK;
237 } 237 }