Skip to content

Fix atti assert in wlr_egl_init

Simon Ser requested to merge github/fork/RedSoxFan/fix-atti-assert into master

Created by: RedSoxFan

If request_high_priority is true, then atti will be 5 in the assert. Since 5 is not less than 5 (sizeof(attribs)/sizeof(attribs[0])), the assert fails and sway does not start.

This changes the assert to be less than or equal to.

Merge request reports