(Salamander) Use EXT_EXECUTABLES

This commit is contained in:
twinaphex 2014-06-05 02:12:42 +02:00
parent 77086bbf6c
commit 7676de50ce
3 changed files with 3 additions and 13 deletions

View File

@ -75,7 +75,7 @@ static void frontend_gx_salamander_init(void)
} }
if(!config_file_exists || !strcmp(libretro_path, "")) if(!config_file_exists || !strcmp(libretro_path, ""))
find_and_set_first_file(libretro_path, sizeof(libretro_path), "dol"); find_and_set_first_file(libretro_path, sizeof(libretro_path), EXT_EXECUTABLES);
else else
{ {
RARCH_LOG("Start [%s] found in retroarch.cfg.\n", libretro_path); RARCH_LOG("Start [%s] found in retroarch.cfg.\n", libretro_path);

View File

@ -67,7 +67,7 @@ static void frontend_ps3_salamander_init(void)
} }
if (!config_file_exists || !strcmp(libretro_path, "")) if (!config_file_exists || !strcmp(libretro_path, ""))
find_and_set_first_file(libretro_path, sizeof(libretro_path), "SELF"); find_and_set_first_file(libretro_path, sizeof(libretro_path), EXT_EXECUTABLES);
else else
RARCH_LOG("Start [%s] found in retroarch.cfg.\n", libretro_path); RARCH_LOG("Start [%s] found in retroarch.cfg.\n", libretro_path);

View File

@ -32,8 +32,6 @@ char libretro_path[512];
static void frontend_xdk_salamander_init(void) static void frontend_xdk_salamander_init(void)
{ {
(void)state;
//normal executable loading path //normal executable loading path
char tmp_str[PATH_MAX]; char tmp_str[PATH_MAX];
bool config_file_exists = false; bool config_file_exists = false;
@ -49,17 +47,9 @@ static void frontend_xdk_salamander_init(void)
} }
if(!config_file_exists || !strcmp(libretro_path, "")) if(!config_file_exists || !strcmp(libretro_path, ""))
{ find_and_set_first_file(libretro_path, sizeof(libretro_path), EXT_EXECUTABLES);
#if defined(_XBOX360)
find_and_set_first_file(libretro_path, sizeof(libretro_path), "xex");
#elif defined(_XBOX1)
find_and_set_first_file(libretro_path, sizeof(libretro_path), "xbe");
#endif
}
else else
{
RARCH_LOG("Start [%s] found in retroarch.cfg.\n", libretro_path); RARCH_LOG("Start [%s] found in retroarch.cfg.\n", libretro_path);
}
if (!config_file_exists) if (!config_file_exists)
{ {