Merge pull request #2394 from aliaspider/master

(3DS) allow reading content path from argv.
This commit is contained in:
Twinaphex 2015-11-14 22:25:31 +01:00
commit d3037ed839

View File

@ -80,48 +80,25 @@ static void frontend_ctr_get_environment_settings(int *argc, char *argv[],
fill_pathname_join(g_defaults.path.config, g_defaults.dir.port, fill_pathname_join(g_defaults.path.config, g_defaults.dir.port,
"retroarch.cfg", sizeof(g_defaults.path.config)); "retroarch.cfg", sizeof(g_defaults.path.config));
#if 0
int i;
DEBUG_VAR(*argc);
for (i=0; i < *argc; i++)
DEBUG_STR(argv[i]);
DEBUG_HOLD();
#endif
*argc = 0;
#ifndef IS_SALAMANDER #ifndef IS_SALAMANDER
#if 0 /* clean-up argc/argv */
if (argv[1] && (argv[1][0] != '\0')) if(*argc)
{ {
static char path[PATH_MAX_LENGTH]; int i = *argc - 1;
struct rarch_main_wrap *args = NULL; *argc = 0;
while (i)
*path = '\0';
args = (struct rarch_main_wrap*)params_data;
if (args)
{ {
strlcpy(path, argv[1], sizeof(path)); if(argv[i] && argv[i][0])
{
args->touched = true; argv[1] = argv[i];
args->no_content = false; argv[2] = NULL;
args->verbose = false; *argc = 2;
args->config_path = NULL; break;
args->sram_path = NULL; }
args->state_path = NULL; i--;
args->content_path = path;
args->libretro_path = NULL;
RARCH_LOG("argv[0]: %s\n", argv[0]);
RARCH_LOG("argv[1]: %s\n", argv[1]);
RARCH_LOG("argv[2]: %s\n", argv[2]);
RARCH_LOG("Auto-start game %s.\n", argv[1]);
} }
} }
#endif #endif
#endif
} }
static void frontend_ctr_deinit(void *data) static void frontend_ctr_deinit(void *data)