mirror of
https://github.com/libretro/RetroArch
synced 2025-04-03 10:21:31 +00:00
Fix setting directories/paths
This commit is contained in:
parent
e94873727e
commit
03b93b224c
@ -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;
|
||||||
|
Loading…
x
Reference in New Issue
Block a user