aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--backend/drm/drm.c5
1 files changed, 1 insertions, 4 deletions
diff --git a/backend/drm/drm.c b/backend/drm/drm.c
index a9cfc066..7303bbd6 100644
--- a/backend/drm/drm.c
+++ b/backend/drm/drm.c
@@ -92,10 +92,7 @@ static bool add_plane(struct wlr_drm_backend *drm,
struct wlr_drm_crtc *crtc, drmModePlane *drm_plane,
uint32_t type, union wlr_drm_plane_props *props) {
assert(!(type == DRM_PLANE_TYPE_PRIMARY && crtc->primary));
-
- if (type == DRM_PLANE_TYPE_CURSOR && crtc->cursor) {
- return true;
- }
+ assert(!(type == DRM_PLANE_TYPE_CURSOR && crtc->cursor));
struct wlr_drm_plane *p = calloc(1, sizeof(*p));
if (!p) {