Remove config path in RGUI.

Wonky, opens a can of worms to change it.
This commit is contained in:
Themaister 2013-05-18 00:34:52 +02:00
parent 1895cca5d9
commit 1325794178
2 changed files with 0 additions and 5 deletions

View File

@ -154,7 +154,6 @@ typedef enum
RGUI_SAVESTATE_DIR_PATH,
RGUI_SAVEFILE_DIR_PATH,
RGUI_SYSTEM_DIR_PATH,
RGUI_CONFIG_PATH,
RGUI_SETTINGS_RESTART_GAME,
RGUI_SETTINGS_AUDIO_MUTE,
RGUI_SETTINGS_AUDIO_CONTROL_RATE_DELTA,

View File

@ -626,9 +626,6 @@ static void render_text(rgui_handle_t *rgui)
case RGUI_SYSTEM_DIR_PATH:
strlcpy(type_str, g_settings.system_directory, sizeof(type_str));
break;
case RGUI_CONFIG_PATH:
strlcpy(type_str, g_extern.config_path, sizeof(type_str));
break;
case RGUI_SETTINGS_DISK_INDEX:
{
const struct retro_disk_control_callback *control = &g_extern.system.disk_control;
@ -1845,7 +1842,6 @@ static void rgui_settings_path_populate_entries(rgui_handle_t *rgui)
rgui_list_push(rgui->selection_buf, "Savestate Directory", RGUI_SAVESTATE_DIR_PATH, 0);
rgui_list_push(rgui->selection_buf, "Savefile Directory", RGUI_SAVEFILE_DIR_PATH, 0);
rgui_list_push(rgui->selection_buf, "System Directory", RGUI_SYSTEM_DIR_PATH, 0);
rgui_list_push(rgui->selection_buf, "Config File", RGUI_CONFIG_PATH, 0);
}
static void rgui_settings_controller_populate_entries(rgui_handle_t *rgui)