Skip to content

Commit

Permalink
Fix sync type detection.
Browse files Browse the repository at this point in the history
  • Loading branch information
anholt committed Sep 24, 2007
1 parent 7d797a8 commit 65a379a
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 @@ -176,7 +176,7 @@ detailed_block(unsigned char *x)
vso = ((x[10] >> 4) + ((x[11] & 0x0C) << 2));
vspw = ((x[10] & 0x0F) + ((x[11] & 0x03) << 4));
vborder = x[16];
switch ((x[17] & 0x0c) >> 2) {
switch ((x[17] & 0x18) >> 3) {
case 0x00:
syncmethod = "analog composite";
break;
Expand Down

0 comments on commit 65a379a

Please sign in to comment.