mirror of
https://github.com/CTCaer/RetroArch.git
synced 2024-12-13 13:28:49 +00:00
Turn config_save_keybinds into static function, if 0 it out since
it is not used right now
This commit is contained in:
parent
42d0c1f213
commit
f4d3f47a0a
@ -2412,6 +2412,7 @@ void config_load(void)
|
||||
config_load_core_specific();
|
||||
}
|
||||
|
||||
#if 0
|
||||
/**
|
||||
* config_save_keybinds_file:
|
||||
* @path : Path that shall be written to.
|
||||
@ -2420,7 +2421,7 @@ void config_load(void)
|
||||
*
|
||||
* Returns: true (1) on success, otherwise returns false (0).
|
||||
**/
|
||||
bool config_save_keybinds_file(const char *path)
|
||||
static bool config_save_keybinds_file(const char *path)
|
||||
{
|
||||
unsigned i = 0;
|
||||
bool ret = false;
|
||||
@ -2441,6 +2442,7 @@ bool config_save_keybinds_file(const char *path)
|
||||
config_file_free(conf);
|
||||
return ret;
|
||||
}
|
||||
#endif
|
||||
|
||||
|
||||
/**
|
||||
|
@ -521,16 +521,6 @@ bool config_unload_override(void);
|
||||
*/
|
||||
bool config_load_remap(void);
|
||||
|
||||
/**
|
||||
* config_save_keybinds_file:
|
||||
* @path : Path that shall be written to.
|
||||
*
|
||||
* Writes a keybinds config file to disk.
|
||||
*
|
||||
* Returns: true (1) on success, otherwise returns false (0).
|
||||
**/
|
||||
bool config_save_keybinds_file(const char *path);
|
||||
|
||||
/**
|
||||
* config_save_autoconf_profile:
|
||||
* @path : Path that shall be written to.
|
||||
|
Loading…
Reference in New Issue
Block a user