Increase ROM history size to 100.

This commit is contained in:
Themaister 2013-05-25 12:07:34 +02:00
parent 5d65f528d7
commit de7fc0fb6f

View File

@ -563,7 +563,7 @@ void menu_init(void)
fill_pathname_resolve_relative(history_path, g_extern.config_path,
".retroarch-history.txt", sizeof(history_path));
RARCH_LOG("[RGUI]: Opening history: %s.\n", history_path);
rgui->history = rom_history_init(history_path, 20);
rgui->history = rom_history_init(history_path, 100);
}
}