Skip to content

Commit

Permalink
Fix max horizontal pixel counting in range CVT subblock
Browse files Browse the repository at this point in the history
  • Loading branch information
nwnk committed Mar 9, 2009
1 parent e12845d commit 88205bd
Showing 1 changed file with 1 addition and 0 deletions.
1 change: 1 addition & 0 deletions edid-decode.c
Original file line number Diff line number Diff line change
Expand Up @@ -278,6 +278,7 @@ detailed_block(unsigned char *x, int in_extension)
max_h_pixels = x[12] & 0x03;
max_h_pixels <<= 8;
max_h_pixels |= x[13];
max_h_pixels *= 8;
if (max_h_pixels)
printf("Max active pixels per line: %d\n", max_h_pixels);

Expand Down

0 comments on commit 88205bd

Please sign in to comment.