summaryrefslogtreecommitdiffstatshomepage
diff options
context:
space:
mode:
authorDamien George <damien.p.george@gmail.com>2016-09-04 16:39:28 +1000
committerDamien George <damien.p.george@gmail.com>2016-09-04 16:39:28 +1000
commit47899a1ab8756c3850bb275f3756544da0e7b050 (patch)
treed09440f59c5f8d7b9e9388468e2273e661233bae
parent8c6856d2e76c5865d9f30cad2c51615d4a1a1418 (diff)
downloadmicropython-47899a1ab8756c3850bb275f3756544da0e7b050.tar.gz
micropython-47899a1ab8756c3850bb275f3756544da0e7b050.zip
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.)
-rw-r--r--extmod/modframebuf.c2
1 files changed, 1 insertions, 1 deletions
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 {