On Sun, 1 May 2022 at 20:39, Stefan Dösinger stefan@codeweavers.com wrote:
- /* Fast and simple path for setting everything to zero. The C library's memset is
* more sophisticated than our code below. Also this works for block formats, which
* we still need to zero-initialize for newly created resources. */
- if (!colour->r && !colour->g && !colour->b && !colour->a &&
!memcmp(box, &level_box, sizeof(*box)))
- {
The "&&" should go to the start of the next line.