Add a new font editor

This commit is contained in:
mniip
2018-04-29 18:49:40 +03:00
parent 04c875120a
commit c0c550e920
5 changed files with 637 additions and 4 deletions

View File

@@ -1,6 +1,7 @@
#ifndef FONT_H_CHECK
#define FONT_H_CHECK
#define FONT_H 12
#ifndef FONTEDITOR
#ifdef INCLUDE_FONTDATA
unsigned char font_data[] = {
0x05, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00,
@@ -299,5 +300,9 @@ short font_ptrs[] = {
extern unsigned char font_data[];
extern short font_ptrs[];
#endif
#else
extern unsigned char *font_data;
extern short *font_ptrs;
#endif
#endif