Skip to content
This repository has been archived by the owner on Nov 1, 2021. It is now read-only.

Commit

Permalink
Merge pull request #1385 from atomnuker/master
Browse files Browse the repository at this point in the history
Fix interlaced mode rejection
  • Loading branch information
emersion authored Nov 22, 2018
2 parents 42e8e3e + 91513c8 commit c70b8f6
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion backend/drm/drm.c
Original file line number Diff line number Diff line change
Expand Up @@ -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;
}
Expand Down

0 comments on commit c70b8f6

Please sign in to comment.