From 47899a1ab8756c3850bb275f3756544da0e7b050 Mon Sep 17 00:00:00 2001 From: Damien George Date: Sun, 4 Sep 2016 16:39:28 +1000 Subject: [PATCH] extmod/modframebuf: Include font from stmhal directory explicitly. So that users of framebuf don't need to have stmhal directory in their path. (Eventually the font can be moved elsewhere.) --- extmod/modframebuf.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/extmod/modframebuf.c b/extmod/modframebuf.c index 84f1246fba..569b75e1c6 100644 --- a/extmod/modframebuf.c +++ b/extmod/modframebuf.c @@ -33,7 +33,7 @@ #if MICROPY_PY_FRAMEBUF -#include "font_petme128_8x8.h" +#include "stmhal/font_petme128_8x8.h" // 1-bit frame buffer, each byte is a column of 8 pixels typedef struct _mp_obj_framebuf1_t {