Update TODO/FIXMEs

This commit is contained in:
twinaphex 2020-05-29 06:20:16 +02:00
parent a5ca6c24de
commit 3ae7e9f8df
3 changed files with 5 additions and 2 deletions

View File

@ -45,6 +45,7 @@ static const font_renderer_driver_t *font_backends[] = {
NULL
};
/* TODO/FIXME - global */
static void *video_font_driver = NULL;
int font_renderer_create_default(

View File

@ -84,7 +84,9 @@ typedef struct gfx_animation gfx_animation_t;
static const float ticker_pixel_period = (1.0f / 60.0f) * 1000.0f;
static const char ticker_spacer_default[] = TICKER_SPACER_DEFAULT;
/* TODO/FIXME - global that gets referenced outside,
* needs to be refactored */
static gfx_animation_t anim;
/* Forward declarations */

View File

@ -51,8 +51,8 @@ typedef struct videocrt_switch
double p_clock;
} videocrt_switch_t;
/* TODO/FIXME - globals */
static videocrt_switch_t crt_switch_st;
static bool first_run = true;
static void crt_check_first_run(void)