Skip to content

Commit

Permalink
Dump CEA VICs as decimal, since they're decimal in the spec
Browse files Browse the repository at this point in the history
  • Loading branch information
nwnk committed Sep 22, 2009
1 parent ff1d980 commit db23ed3
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion edid-decode.c
Original file line number Diff line number Diff line change
Expand Up @@ -449,7 +449,7 @@ cea_video_block(unsigned char *x)
int length = x[0] & 0x1f;

for (i = 1; i < length; i++)
printf(" VIC %02x %s\n", x[i] & 0x7f, x[i] & 0x80 ? "(native)" : "");
printf(" VIC %02d %s\n", x[i] & 0x7f, x[i] & 0x80 ? "(native)" : "");
}

static void
Expand Down

0 comments on commit db23ed3

Please sign in to comment.