Add more TODO/FIXME notes

This commit is contained in:
twinaphex 2020-05-29 06:31:15 +02:00
parent 3ae7e9f8df
commit 56619d7276
3 changed files with 4 additions and 3 deletions

View File

@ -135,6 +135,7 @@ static frontend_ctx_driver_t *frontend_ctx_drivers[] = {
};
#ifndef IS_SALAMANDER
/* TODO/FIXME - static public global variable */
static frontend_ctx_driver_t *current_frontend_ctx;
#endif

View File

@ -124,8 +124,8 @@ struct menu_state
};
/* TODO/FIXME - static public global variables */
static struct menu_state menu_driver_state;
static menu_handle_t *menu_driver_data = NULL;
static const menu_ctx_driver_t *menu_driver_ctx = NULL;
static void *menu_userdata = NULL;

View File

@ -92,9 +92,9 @@ typedef struct verbosity_state
#endif
} verbosity_state_t;
/* TODO/FIXME - static public global variables */
static verbosity_state_t main_verbosity_st;
static unsigned verbosity_log_level =
static unsigned verbosity_log_level =
DEFAULT_FRONTEND_LOG_LEVEL;
#ifdef HAVE_LIBNX