Cleanups
This commit is contained in:
parent
55e7c16dea
commit
58457ef16c
|
@ -3458,7 +3458,8 @@ bool config_unload_override(void)
|
||||||
*
|
*
|
||||||
* Returns: false if there was an error or no action was performed.
|
* Returns: false if there was an error or no action was performed.
|
||||||
*/
|
*/
|
||||||
bool config_load_remap(const char *directory_input_remapping)
|
bool config_load_remap(const char *directory_input_remapping,
|
||||||
|
void *data)
|
||||||
{
|
{
|
||||||
size_t path_size = PATH_MAX_LENGTH * sizeof(char);
|
size_t path_size = PATH_MAX_LENGTH * sizeof(char);
|
||||||
config_file_t *new_conf = NULL;
|
config_file_t *new_conf = NULL;
|
||||||
|
@ -3466,7 +3467,7 @@ bool config_load_remap(const char *directory_input_remapping)
|
||||||
char *core_path = NULL;
|
char *core_path = NULL;
|
||||||
char *game_path = NULL;
|
char *game_path = NULL;
|
||||||
char *content_path = NULL;
|
char *content_path = NULL;
|
||||||
rarch_system_info_t *system = runloop_get_system_info();
|
rarch_system_info_t *system = (rarch_system_info_t*)data;
|
||||||
const char *core_name = system ? system->info.library_name : NULL;
|
const char *core_name = system ? system->info.library_name : NULL;
|
||||||
const char *rarch_path_basename = path_get(RARCH_PATH_BASENAME);
|
const char *rarch_path_basename = path_get(RARCH_PATH_BASENAME);
|
||||||
const char *game_name = path_basename(rarch_path_basename);
|
const char *game_name = path_basename(rarch_path_basename);
|
||||||
|
@ -3964,7 +3965,7 @@ bool config_save_file(const char *path)
|
||||||
*
|
*
|
||||||
* Returns: true (1) on success, otherwise returns false (0).
|
* Returns: true (1) on success, otherwise returns false (0).
|
||||||
**/
|
**/
|
||||||
bool config_save_overrides(enum override_type type)
|
bool config_save_overrides(enum override_type type, void *data)
|
||||||
{
|
{
|
||||||
size_t path_size = PATH_MAX_LENGTH * sizeof(char);
|
size_t path_size = PATH_MAX_LENGTH * sizeof(char);
|
||||||
int tmp_i = 0;
|
int tmp_i = 0;
|
||||||
|
@ -3999,7 +4000,7 @@ bool config_save_overrides(enum override_type type)
|
||||||
int size_settings_size = sizeof(settings->sizes) / sizeof(settings->sizes.placeholder);
|
int size_settings_size = sizeof(settings->sizes) / sizeof(settings->sizes.placeholder);
|
||||||
int array_settings_size = sizeof(settings->arrays) / sizeof(settings->arrays.placeholder);
|
int array_settings_size = sizeof(settings->arrays) / sizeof(settings->arrays.placeholder);
|
||||||
int path_settings_size = sizeof(settings->paths) / sizeof(settings->paths.placeholder);
|
int path_settings_size = sizeof(settings->paths) / sizeof(settings->paths.placeholder);
|
||||||
rarch_system_info_t *system = runloop_get_system_info();
|
rarch_system_info_t *system = (rarch_system_info_t*)data;
|
||||||
const char *core_name = system ? system->info.library_name : NULL;
|
const char *core_name = system ? system->info.library_name : NULL;
|
||||||
const char *rarch_path_basename = path_get(RARCH_PATH_BASENAME);
|
const char *rarch_path_basename = path_get(RARCH_PATH_BASENAME);
|
||||||
const char *game_name = path_basename(rarch_path_basename);
|
const char *game_name = path_basename(rarch_path_basename);
|
||||||
|
|
|
@ -848,7 +848,8 @@ bool config_unload_override(void);
|
||||||
* Returns: false if there was an error or no action was performed.
|
* Returns: false if there was an error or no action was performed.
|
||||||
*
|
*
|
||||||
*/
|
*/
|
||||||
bool config_load_remap(const char *directory_input_remapping);
|
bool config_load_remap(const char *directory_input_remapping,
|
||||||
|
void *data);
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* config_save_autoconf_profile:
|
* config_save_autoconf_profile:
|
||||||
|
@ -876,7 +877,7 @@ bool config_save_file(const char *path);
|
||||||
*
|
*
|
||||||
* Returns: true (1) on success, otherwise returns false (0).
|
* Returns: true (1) on success, otherwise returns false (0).
|
||||||
**/
|
**/
|
||||||
bool config_save_overrides(enum override_type type);
|
bool config_save_overrides(enum override_type type, void *data);
|
||||||
|
|
||||||
/* Replaces currently loaded configuration file with
|
/* Replaces currently loaded configuration file with
|
||||||
* another one. Will load a dummy core to flush state
|
* another one. Will load a dummy core to flush state
|
||||||
|
|
|
@ -5912,9 +5912,9 @@ static bool command_event_init_core(enum rarch_core_type type)
|
||||||
current_core.retro_set_environment(rarch_environment_cb);
|
current_core.retro_set_environment(rarch_environment_cb);
|
||||||
|
|
||||||
#ifdef HAVE_CONFIGFILE
|
#ifdef HAVE_CONFIGFILE
|
||||||
/* Auto-remap: apply remap files */
|
|
||||||
if (settings->bools.auto_remaps_enable)
|
if (settings->bools.auto_remaps_enable)
|
||||||
config_load_remap(settings->paths.directory_input_remapping);
|
config_load_remap(settings->paths.directory_input_remapping,
|
||||||
|
&runloop_system);
|
||||||
#endif
|
#endif
|
||||||
|
|
||||||
/* Per-core saves: reset redirection paths */
|
/* Per-core saves: reset redirection paths */
|
||||||
|
@ -6158,7 +6158,7 @@ static void command_event_save_current_config(enum override_type type)
|
||||||
case OVERRIDE_GAME:
|
case OVERRIDE_GAME:
|
||||||
case OVERRIDE_CORE:
|
case OVERRIDE_CORE:
|
||||||
case OVERRIDE_CONTENT_DIR:
|
case OVERRIDE_CONTENT_DIR:
|
||||||
if (config_save_overrides(type))
|
if (config_save_overrides(type, &runloop_system))
|
||||||
{
|
{
|
||||||
strlcpy(msg, msg_hash_to_str(MSG_OVERRIDES_SAVED_SUCCESSFULLY), sizeof(msg));
|
strlcpy(msg, msg_hash_to_str(MSG_OVERRIDES_SAVED_SUCCESSFULLY), sizeof(msg));
|
||||||
RARCH_LOG("[config] [overrides] %s\n", msg);
|
RARCH_LOG("[config] [overrides] %s\n", msg);
|
||||||
|
|
Loading…
Reference in New Issue