mirror of
https://github.com/hyprwm/wlroots-hyprland.git
synced 2024-11-12 16:35:58 +01:00
Fix interlaced mode rejection
This commit is contained in:
parent
42e8e3ed0a
commit
91513c89cd
1 changed files with 1 additions and 1 deletions
|
@ -1134,7 +1134,7 @@ void scan_drm_connectors(struct wlr_drm_backend *drm) {
|
|||
continue;
|
||||
}
|
||||
|
||||
if (mode->drm_mode.flags & DRM_MODE_FLAG_INTERLACE) {
|
||||
if (drm_conn->modes[i].flags & DRM_MODE_FLAG_INTERLACE) {
|
||||
free(mode);
|
||||
continue;
|
||||
}
|
||||
|
|
Loading…
Reference in a new issue