diff options
author | Hanspeter Portner <dev@open-music-kontrollers.ch> | 2016-11-05 15:02:15 +0100 |
---|---|---|
committer | Hanspeter Portner <dev@open-music-kontrollers.ch> | 2016-11-05 15:02:15 +0100 |
commit | 107cd3d8c15e0d2a35094d38504fc6aecfaa9058 (patch) | |
tree | abeffb65b683ef228d27c4b3dc338ac32844805d /atom_inspector_nk.c | |
parent | 85abde2975102f04962e566efc1bef8bf5f8365e (diff) | |
download | sherlock.lv2-107cd3d8c15e0d2a35094d38504fc6aecfaa9058.tar.xz |
remove deprecated ui files..
Diffstat (limited to 'atom_inspector_nk.c')
-rw-r--r-- | atom_inspector_nk.c | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/atom_inspector_nk.c b/atom_inspector_nk.c index b143561..22cbf57 100644 --- a/atom_inspector_nk.c +++ b/atom_inspector_nk.c @@ -20,10 +20,10 @@ #include <sherlock.h> #include <sherlock_nk.h> -static const uint8_t ful = 0xff; -static const uint8_t one = 0xbb; -static const uint8_t two = 0x66; -static const uint8_t non = 0x0; +#define ful 0xff +#define one 0xbb +#define two 0x66 +#define non 0x0 static const struct nk_color white = {.r = one, .g = one, .b = one, .a = ful}; static const struct nk_color gray = {.r = two, .g = two, .b = two, .a = ful}; static const struct nk_color yellow = {.r = one, .g = one, .b = non, .a = ful}; |