From f071adf8f590bb2d2ceee7d93bea120c9d754788 Mon Sep 17 00:00:00 2001 From: XaviDCR92 Date: Mon, 24 Jul 2017 22:39:16 +0200 Subject: * Some improvements made to improve peformance and stability. - Removed Pad module (useless). * Some functions removed from System and Gfx. --- Source/Font.c | 15 --------------- 1 file changed, 15 deletions(-) (limited to 'Source/Font.c') 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, -- cgit v1.2.3