1
Fork 0
mirror of https://github.com/RGBCube/serenity synced 2025-07-26 20:37:36 +00:00

LibEDID: Fix calculating height and refresh rate for interlaced modes

The vertical values need to be multiplied with 2 for interlaced modes.
This commit is contained in:
Tom 2022-01-24 10:56:32 -07:00 committed by Linus Groh
parent e04e52186d
commit 18fc54fc34
2 changed files with 11 additions and 3 deletions

View file

@ -349,6 +349,8 @@ public:
{
}
u16 vertical_addressable_lines_raw() const;
Parser const& m_edid;
Definitions::DetailedTiming const& m_detailed_timings;
};