diff options
Diffstat (limited to 'res/fonts')
-rw-r--r-- | res/fonts/Makefile | 2 | ||||
-rw-r--r-- | res/fonts/pcvga.c | 2 |
2 files changed, 2 insertions, 2 deletions
diff --git a/res/fonts/Makefile b/res/fonts/Makefile index 9a2a6b3..758bbcf 100644 --- a/res/fonts/Makefile +++ b/res/fonts/Makefile @@ -1,5 +1,5 @@ CC=gcc -CFLAGS=-I../../src/lib/include -std=c11 +CFLAGS=-I../../src/lib/include/proto -std=c11 AS=nasm ASFLAGS=-fbin diff --git a/res/fonts/pcvga.c b/res/fonts/pcvga.c index b646eb8..b520171 100644 --- a/res/fonts/pcvga.c +++ b/res/fonts/pcvga.c @@ -1,6 +1,6 @@ #include <stdio.h> -#include <proto/font_file.h> +#include <font_file.h> char font_data[256][16] = { /* 0x00 */ {0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00}, |