aboutsummaryrefslogtreecommitdiffstats
path: root/monitor-parse-edid
diff options
context:
space:
mode:
Diffstat (limited to 'monitor-parse-edid')
-rwxr-xr-xmonitor-parse-edid4
1 files changed, 1 insertions, 3 deletions
diff --git a/monitor-parse-edid b/monitor-parse-edid
index 97d74d7..53e7d50 100755
--- a/monitor-parse-edid
+++ b/monitor-parse-edid
@@ -227,9 +227,7 @@ sub parse_edid {
$h->{$field} += $hi << $detailed_timing_field_size{$field};
}
push @{$edid{detailed_timings}}, $h
- if ($h->{horizontal_active} > 0 && $h->{vertical_active} > 0)
- && ($h->{horizontal_active} != 720 && $h->{horizontal_active} != 350)
- && ($h->{horizontal_active} != 640 && $h->{horizontal_active} != 350);
+ if $h->{horizontal_active} > 0 && $h->{vertical_active} > 0;
} else {
(my $flag, $vv) = unpack("n x a*", $vv);