Skip to content

Commit

Permalink
Fix standard timing decode for 16:9 modes
Browse files Browse the repository at this point in the history
No idea why I ever thought these were 15:9.  Sorry!  Sorry.  X and
kernel get this right already though.

Signed-off-by: Adam Jackson <ajax@redhat.com>
  • Loading branch information
nwnk committed Jun 7, 2012
1 parent 27532e7 commit ce77822
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 @@ -1138,7 +1138,7 @@ int main(int argc, char **argv)
y = x * 4 / 5;
break;
case 0x03:
y = x * 9 / 15;
y = x * 9 / 16;
break;
}
refresh = 60 + (b2 & 0x3f);
Expand Down

0 comments on commit ce77822

Please sign in to comment.