Fix setting directories/paths

This commit is contained in:
twinaphex 2016-06-17 15:54:31 +02:00
parent e94873727e
commit 03b93b224c

View File

@ -849,13 +849,14 @@ static int generic_action_ok(const char *path,
unsigned flush_type = 0; unsigned flush_type = 0;
int ret = 0; int ret = 0;
const char *menu_path = NULL; const char *menu_path = NULL;
const char *menu_label = NULL;
const char *flush_char = NULL; const char *flush_char = NULL;
menu_handle_t *menu = NULL; menu_handle_t *menu = NULL;
if (!menu_driver_ctl(RARCH_MENU_CTL_DRIVER_DATA_GET, &menu)) if (!menu_driver_ctl(RARCH_MENU_CTL_DRIVER_DATA_GET, &menu))
goto error; goto error;
menu_entries_get_last_stack(&menu_path, NULL, menu_entries_get_last_stack(&menu_path, &menu_label,
NULL, NULL); NULL, NULL);
if (!string_is_empty(path)) if (!string_is_empty(path))
@ -958,14 +959,13 @@ static int generic_action_ok(const char *path,
case ACTION_OK_SET_PATH: case ACTION_OK_SET_PATH:
flush_type = 49; flush_type = 49;
{ {
menu_file_list_cbs_t *cbs = rarch_setting_t *setting = menu_setting_find(menu_label);
menu_entries_get_last_stack_actiondata();
if (cbs) if (setting)
{ {
menu_setting_set_with_string_representation( menu_setting_set_with_string_representation(
cbs->setting, action_path); setting, action_path);
ret = menu_setting_generic(cbs->setting, false); ret = menu_setting_generic(setting, false);
} }
} }
break; break;