diff options
author | Damien George <damien.p.george@gmail.com> | 2016-09-04 16:39:28 +1000 |
---|---|---|
committer | Damien George <damien.p.george@gmail.com> | 2016-09-04 16:39:28 +1000 |
commit | 47899a1ab8756c3850bb275f3756544da0e7b050 (patch) | |
tree | d09440f59c5f8d7b9e9388468e2273e661233bae /extmod/modframebuf.c | |
parent | 8c6856d2e76c5865d9f30cad2c51615d4a1a1418 (diff) |
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.)
Diffstat (limited to 'extmod/modframebuf.c')
-rw-r--r-- | extmod/modframebuf.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/extmod/modframebuf.c b/extmod/modframebuf.c index 84f1246fb..569b75e1c 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 { |