From 8875fc8d8b7c92254aa1182ce21fbfa7d6179225 Mon Sep 17 00:00:00 2001 From: Stefan `Sec` Zehl Date: Wed, 3 Aug 2011 22:33:14 +0200 Subject: [PATCH] Revert "save 4 bytes by making internal function static" This reverts commit 81294835ec2cc65aa4dfca95458dc5df2f4de3f0. --- firmware/lcd/render.c | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/firmware/lcd/render.c b/firmware/lcd/render.c index 11890e5..2a2f692 100644 --- a/firmware/lcd/render.c +++ b/firmware/lcd/render.c @@ -14,7 +14,7 @@ const struct FONT_DEF * font = NULL; struct EXTFONT efont; -static FIL file; /* current font file */ +FIL file; /* current font file */ /* Exported Functions */ @@ -138,7 +138,7 @@ int _getFontData(int type, int offset){ return 0; }; -static int _getIndex(int c){ +int _getIndex(int c){ #define ERRCHR (font->u8FirstChar+1) /* Does this font provide this character? */ if(cu8FirstChar)