fix madly flashing background

the preprocessor symbol DEBUG is now defined to (0) even
when debugging should not not be enabled, so change from checking
This commit is contained in:
Daniel Barlow 2021-08-29 12:56:14 +01:00 committed by Johan Malm
parent 5a84ddf2c2
commit 75564d6b8d

View file

@ -661,7 +661,7 @@ output_render(struct output *output, pixman_region32_t *damage)
goto renderer_end; goto renderer_end;
} }
#ifdef DEBUG #if DEBUG
wlr_renderer_clear(renderer, (float[]){0.2f, 0.0f, 0.0f, 1.0f}); wlr_renderer_clear(renderer, (float[]){0.2f, 0.0f, 0.0f, 1.0f});
#endif #endif