Move two variables to input_driver.c

This commit is contained in:
twinaphex 2021-11-22 15:26:54 +01:00
parent 5bb4df3a42
commit c2c36177b8
2 changed files with 2 additions and 4 deletions

View File

@ -88,6 +88,8 @@
/**************************************/
/* TODO/FIXME - turn these into static global variable */
retro_keybind_set input_config_binds[MAX_USERS];
retro_keybind_set input_autoconf_binds[MAX_USERS];
uint64_t lifecycle_state = 0;
static void *input_null_init(const char *joypad_driver) { return (void*)-1; }

View File

@ -299,10 +299,6 @@ static struct rarch_state rarch_st = {0};
static const void *MAGIC_POINTER = (void*)(uintptr_t)0x0DEFACED;
#endif
/* TODO/FIXME - turn these into static global variable */
retro_keybind_set input_config_binds[MAX_USERS];
retro_keybind_set input_autoconf_binds[MAX_USERS];
static access_state_t access_state_st = {0};
static struct global global_driver_st = {0}; /* retro_time_t alignment */