From 94c8927d7b0298a576da326ef9f584cbb0b0427c Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Jer=C3=B3nimo=20Navarro?= Date: Wed, 25 Sep 2019 09:47:36 -0300 Subject: [PATCH] win_defs.h: fix #240 --- src/win_defs.h | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/win_defs.h b/src/win_defs.h index bc43fc3..2a18e4b 100644 --- a/src/win_defs.h +++ b/src/win_defs.h @@ -91,4 +91,4 @@ enum win_flags { static const int_fast16_t WIN_FLAGS_IMAGES_STALE = WIN_FLAGS_PIXMAP_STALE | WIN_FLAGS_SHADOW_STALE; -static const int_fast16_t WIN_FLAGS_IMAGES_NONE = WIN_FLAGS_PIXMAP_NONE | WIN_FLAGS_SHADOW_NONE; +#define WIN_FLAGS_IMAGES_NONE (WIN_FLAGS_PIXMAP_NONE | WIN_FLAGS_SHADOW_NONE)