summaryrefslogtreecommitdiff
path: root/Source/Font.c
diff options
context:
space:
mode:
authorXaviDCR92 <xavi.dcr@gmail.com>2017-07-24 22:39:16 +0200
committerXaviDCR92 <xavi.dcr@gmail.com>2017-07-24 22:39:16 +0200
commitf071adf8f590bb2d2ceee7d93bea120c9d754788 (patch)
treee5cd62882fed370bc2d0f75ca6f10fe4b65d5940 /Source/Font.c
parent41d8caba3b3e7611d657c0ee4cecd1cdbdf0c814 (diff)
* Some improvements made to improve peformance and stability.
- Removed Pad module (useless). * Some functions removed from System and Gfx.
Diffstat (limited to 'Source/Font.c')
-rw-r--r--Source/Font.c15
1 files changed, 0 insertions, 15 deletions
diff --git a/Source/Font.c b/Source/Font.c
index 3e729f3..c4b1491 100644
--- a/Source/Font.c
+++ b/Source/Font.c
@@ -104,21 +104,6 @@ void FontPrintText(TYPE_FONT * ptrFont, short x, short y, char* str, ...)
va_list ap;
- if(ptrFont->flags & FONT_1HZ_FLASH)
- {
- if(Gfx1HzFlash() == false)
- {
- return;
- }
- }
- else if(ptrFont->flags & FONT_2HZ_FLASH)
- {
- if(Gfx2HzFlash() == false)
- {
- return;
- }
- }
-
va_start(ap, str);
result = vsnprintf( _internal_text,