Use C-comment style

This commit is contained in:
retro-wertz
2017-10-15 03:13:11 +08:00
parent ebca2248d0
commit 52c8155dee
33 changed files with 441 additions and 408 deletions

View File

@@ -63,8 +63,10 @@ static uint8 rp2c05004_colortable[] =
main() {
int x;
for (x = 0; x < 64; x++) {
// if(x <= 0x20)
// if(rp2c04002_colortable[x] == 0xFF) rp2c04002_colortable[x]= 0x30;
#if 0
if(x <= 0x20)
if(rp2c04002_colortable[x] == 0xFF) rp2c04002_colortable[x]= 0x30;
#endif
printf("{0x%02x, 0x%02x, 0x%02x},\n", palette[rp2c04001_colortable[x] & 0x3F].r,
palette[rp2c04001_colortable[x] & 0x3F].g,
palette[rp2c04001_colortable[x] & 0x3F].b);