summary refs log tree commit diff
path: root/gfx/brot.c
diff options
context:
space:
mode:
Diffstat (limited to '')
-rw-r--r--gfx/brot.c (renamed from bin/brot.c)2
1 files changed, 1 insertions, 1 deletions
diff --git a/bin/brot.c b/gfx/brot.c
index cd520cb9..64efde4b 100644
--- a/bin/brot.c
+++ b/gfx/brot.c
@@ -26,7 +26,7 @@
 #include <time.h>
 #include <unistd.h>
 
-#include "gfx/gfx.h"
+#include "gfx.h"
 
 #define RGB(r, g, b) ((uint32_t)(r) << 16 | (uint32_t)(g) << 8 | (uint32_t)(b))
 #define GRAY(n) RGB(n, n, n)