Change retroarch-game-history to retroarch-content-history

This commit is contained in:
twinaphex 2014-08-15 19:33:28 +02:00
parent 76ee895f24
commit b21a757b5e
2 changed files with 2 additions and 2 deletions

View File

@ -629,7 +629,7 @@ static void RunActionSheet(const char* title, const struct string_list* items, U
- (void)loadHistory
{
char history_path[PATH_MAX];
fill_pathname_join(history_path, g_defaults.system_dir, ".retroarch-game-history.txt", sizeof(history_path));
fill_pathname_join(history_path, g_defaults.system_dir, "retroarch-content-history.txt", sizeof(history_path));
[self.navigationController pushViewController:[[RAHistoryMenu alloc] initWithHistoryPath:history_path] animated:YES];
}

View File

@ -1066,7 +1066,7 @@ bool config_load_file(const char *path, bool set_defaults)
CONFIG_GET_INT(network_cmd_port, "network_cmd_port");
CONFIG_GET_BOOL(stdin_cmd_enable, "stdin_cmd_enable");
fill_pathname_resolve_relative(g_settings.content_history_path, g_extern.config_path, "retroarch-game-history.txt", sizeof(g_settings.content_history_path));
fill_pathname_resolve_relative(g_settings.content_history_path, g_extern.config_path, "retroarch-content-history.txt", sizeof(g_settings.content_history_path));
CONFIG_GET_PATH(content_history_path, "game_history_path");
CONFIG_GET_INT(content_history_size, "game_history_size");