From 7cfc60f374ad024054ae934259749bce32aee931 Mon Sep 17 00:00:00 2001 From: twinaphex Date: Fri, 18 Jan 2013 19:11:41 +0100 Subject: [PATCH] Do fill_pathnames after init_rom_file - needed for ZIP file extraction code (for Android/RARCH_CONSOLE) --- retroarch.c | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/retroarch.c b/retroarch.c index f1c40397fa..6fcefd04bd 100644 --- a/retroarch.c +++ b/retroarch.c @@ -2696,12 +2696,12 @@ int rarch_main_init(int argc, char *argv[]) g_extern.use_sram = true; bool allow_cheats = true; - fill_pathnames(); - set_savestate_auto_index(); - if (!init_rom_file(g_extern.game_type)) goto error; + fill_pathnames(); + set_savestate_auto_index(); + init_system_av_info(); if (!g_extern.sram_load_disable)