Revert "save 4 bytes by making internal function static"
This reverts commit 81294835ec
.
This commit is contained in:
parent
a5f8a9b04f
commit
8875fc8d8b
|
@ -14,7 +14,7 @@ const struct FONT_DEF * font = NULL;
|
||||||
|
|
||||||
struct EXTFONT efont;
|
struct EXTFONT efont;
|
||||||
|
|
||||||
static FIL file; /* current font file */
|
FIL file; /* current font file */
|
||||||
|
|
||||||
/* Exported Functions */
|
/* Exported Functions */
|
||||||
|
|
||||||
|
@ -138,7 +138,7 @@ int _getFontData(int type, int offset){
|
||||||
return 0;
|
return 0;
|
||||||
};
|
};
|
||||||
|
|
||||||
static int _getIndex(int c){
|
int _getIndex(int c){
|
||||||
#define ERRCHR (font->u8FirstChar+1)
|
#define ERRCHR (font->u8FirstChar+1)
|
||||||
/* Does this font provide this character? */
|
/* Does this font provide this character? */
|
||||||
if(c<font->u8FirstChar)
|
if(c<font->u8FirstChar)
|
||||||
|
|
Loading…
Reference in New Issue