diff options
author | Leonardo Hernández Hernández <leohdz172@proton.me> | 2023-10-05 22:06:30 -0600 |
---|---|---|
committer | Leonardo Hernández Hernández <leohdz172@proton.me> | 2023-10-05 22:06:30 -0600 |
commit | f4031590cd506f7afe5aa62ae58b9ef4bac99af5 (patch) | |
tree | 0417c18eb8fe88d04031a6ba37742ff993c2933b | |
parent | 0ab1ed6530a3891cbf1d9d2943b20f386e0e4a98 (diff) |
add missing url about the COLOR macro
-rw-r--r-- | config.def.h | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/config.def.h b/config.def.h index 9e0c293..0a08aea 100644 --- a/config.def.h +++ b/config.def.h @@ -1,3 +1,4 @@ +/* Taken from https://github.com/djpohly/dwl/issues/466 */ #define COLOR(hex) { ((hex >> 24) & 0xFF) / 255.0f, \ ((hex >> 16) & 0xFF) / 255.0f, \ ((hex >> 8) & 0xFF) / 255.0f, \ |