Remove unused variables

This commit is contained in:
twinaphex 2015-11-29 17:34:31 +01:00
parent 6fd6288337
commit e8d6e48a74
2 changed files with 0 additions and 3 deletions

View File

@ -555,7 +555,6 @@ int16_t input_state(unsigned port, unsigned device,
static bool check_block_hotkey(bool enable_hotkey)
{
bool use_hotkey_enable;
driver_t *driver = driver_get_ptr();
settings_t *settings = config_get_ptr();
const struct retro_keybind *bind =
&settings->input.binds[0][RARCH_ENABLE_HOTKEY];

View File

@ -170,7 +170,6 @@ void menu_input_key_event(bool down, unsigned keycode,
static void menu_input_key_end_line(void)
{
bool keyboard_display = false;
driver_t *driver = driver_get_ptr();
menu_input_ctl(MENU_INPUT_CTL_SET_KEYBOARD_DISPLAY, &keyboard_display);
menu_input_ctl(MENU_INPUT_CTL_UNSET_KEYBOARD_LABEL, NULL);
@ -718,7 +717,6 @@ int menu_input_key_bind_iterate(char *s, size_t len)
struct menu_bind_state binds;
bool timed_out = false;
menu_input_t *menu_input = menu_input_get_ptr();
driver_t *driver = driver_get_ptr();
int64_t current = retro_get_time_usec();
int timeout = (menu_input->binds.timeout_end - current) / 1000000;