From bcd743d3c5a1cf6f46ca82866d19a6971e983c1c Mon Sep 17 00:00:00 2001 From: twinaphex Date: Tue, 4 Aug 2020 03:32:56 +0200 Subject: [PATCH] Cleanup --- gfx/gfx_animation.c | 4 +--- 1 file changed, 1 insertion(+), 3 deletions(-) diff --git a/gfx/gfx_animation.c b/gfx/gfx_animation.c index 4b8e5cc622..96b501dca7 100644 --- a/gfx/gfx_animation.c +++ b/gfx/gfx_animation.c @@ -81,12 +81,10 @@ typedef struct gfx_animation gfx_animation_t; /* Pixel ticker nominally increases by one after each * ticker_pixel_period ms (actual increase depends upon * ticker speed setting and display resolution) */ -static const float ticker_pixel_period = (1.0f / 60.0f) * 1000.0f; +static const float ticker_pixel_period = (1.0f / 60.0f) * 1000.0f; static const char ticker_spacer_default[] = TICKER_SPACER_DEFAULT; -/* Forward declarations */ - /* By default, this should be a NOOP */ static void gfx_animation_update_time_default( float *ticker_pixel_increment,