summaryrefslogtreecommitdiff
path: root/Userland/Libraries/LibEDID/EDID.h
diff options
context:
space:
mode:
authorTom <tomut@yahoo.com>2022-01-24 10:56:32 -0700
committerLinus Groh <mail@linusgroh.de>2022-01-24 19:29:06 +0000
commit18fc54fc34817265d1496bd1b0588b967e03347c (patch)
tree80ebaeeba45b10364fc9dfe1c8c50f4e642c87e0 /Userland/Libraries/LibEDID/EDID.h
parente04e52186d5d4c4c0eb2f29420a8a59a64869a96 (diff)
downloadserenity-18fc54fc34817265d1496bd1b0588b967e03347c.zip
LibEDID: Fix calculating height and refresh rate for interlaced modes
The vertical values need to be multiplied with 2 for interlaced modes.
Diffstat (limited to 'Userland/Libraries/LibEDID/EDID.h')
-rw-r--r--Userland/Libraries/LibEDID/EDID.h2
1 files changed, 2 insertions, 0 deletions
diff --git a/Userland/Libraries/LibEDID/EDID.h b/Userland/Libraries/LibEDID/EDID.h
index 5cb1317164..c42dd16cbb 100644
--- a/Userland/Libraries/LibEDID/EDID.h
+++ b/Userland/Libraries/LibEDID/EDID.h
@@ -349,6 +349,8 @@ public:
{
}
+ u16 vertical_addressable_lines_raw() const;
+
Parser const& m_edid;
Definitions::DetailedTiming const& m_detailed_timings;
};