mirror of
https://github.com/libretro/RetroArch
synced 2025-04-03 10:21:31 +00:00
(3DS) Rework buildbot url
This commit is contained in:
parent
44a600a00c
commit
c4db0fa439
@ -1401,7 +1401,7 @@ static const bool enable_device_vibration = false;
|
|||||||
#elif defined(HAVE_LIBNX)
|
#elif defined(HAVE_LIBNX)
|
||||||
#define DEFAULT_BUILDBOT_SERVER_URL "http://buildbot.libretro.com/nightly/nintendo/switch/libnx/latest/"
|
#define DEFAULT_BUILDBOT_SERVER_URL "http://buildbot.libretro.com/nightly/nintendo/switch/libnx/latest/"
|
||||||
#elif defined(_3DS)
|
#elif defined(_3DS)
|
||||||
#define DEFAULT_BUILDBOT_SERVER_URL "http://buildbot.libretro.com/nightly/nintendo/3ds/latest/"
|
#define DEFAULT_BUILDBOT_SERVER_URL envIsHomebrew() ? "http://buildbot.libretro.com/nightly/nintendo/3ds/latest/3dsx/" : "http://buildbot.libretro.com/nightly/nintendo/3ds/latest/cia/"
|
||||||
#else
|
#else
|
||||||
#define DEFAULT_BUILDBOT_SERVER_URL ""
|
#define DEFAULT_BUILDBOT_SERVER_URL ""
|
||||||
#endif
|
#endif
|
||||||
|
@ -2351,13 +2351,10 @@ void config_set_defaults(void *data)
|
|||||||
retro_assert(j == keyval->id);
|
retro_assert(j == keyval->id);
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
#ifdef _3DS
|
|
||||||
configuration_set_string(settings,
|
|
||||||
settings->paths.network_buildbot_url, envIsHomebrew() ? DEFAULT_BUILDBOT_SERVER_URL"3dsx/" : DEFAULT_BUILDBOT_SERVER_URL"cia/");
|
|
||||||
#else
|
|
||||||
configuration_set_string(settings,
|
configuration_set_string(settings,
|
||||||
settings->paths.network_buildbot_url, DEFAULT_BUILDBOT_SERVER_URL);
|
settings->paths.network_buildbot_url, DEFAULT_BUILDBOT_SERVER_URL);
|
||||||
#endif
|
|
||||||
configuration_set_string(settings,
|
configuration_set_string(settings,
|
||||||
settings->paths.network_buildbot_assets_url,
|
settings->paths.network_buildbot_assets_url,
|
||||||
DEFAULT_BUILDBOT_ASSETS_SERVER_URL);
|
DEFAULT_BUILDBOT_ASSETS_SERVER_URL);
|
||||||
|
@ -17361,20 +17361,7 @@ static bool setting_append_list(
|
|||||||
if (!play_feature_delivery_enabled())
|
if (!play_feature_delivery_enabled())
|
||||||
#endif
|
#endif
|
||||||
{
|
{
|
||||||
#if defined(_3DS)
|
|
||||||
CONFIG_STRING(
|
|
||||||
list, list_info,
|
|
||||||
settings->paths.network_buildbot_url,
|
|
||||||
sizeof(settings->paths.network_buildbot_url),
|
|
||||||
MENU_ENUM_LABEL_CORE_UPDATER_BUILDBOT_URL,
|
|
||||||
MENU_ENUM_LABEL_VALUE_CORE_UPDATER_BUILDBOT_URL,
|
|
||||||
envIsHomebrew() ? DEFAULT_BUILDBOT_SERVER_URL"3dsx/" : DEFAULT_BUILDBOT_SERVER_URL"cia/",
|
|
||||||
&group_info,
|
|
||||||
&subgroup_info,
|
|
||||||
parent_group,
|
|
||||||
general_write_handler,
|
|
||||||
general_read_handler);
|
|
||||||
#else
|
|
||||||
CONFIG_STRING(
|
CONFIG_STRING(
|
||||||
list, list_info,
|
list, list_info,
|
||||||
settings->paths.network_buildbot_url,
|
settings->paths.network_buildbot_url,
|
||||||
@ -17387,7 +17374,7 @@ static bool setting_append_list(
|
|||||||
parent_group,
|
parent_group,
|
||||||
general_write_handler,
|
general_write_handler,
|
||||||
general_read_handler);
|
general_read_handler);
|
||||||
#endif
|
|
||||||
SETTINGS_DATA_LIST_CURRENT_ADD_FLAGS(list, list_info, SD_FLAG_ALLOW_INPUT);
|
SETTINGS_DATA_LIST_CURRENT_ADD_FLAGS(list, list_info, SD_FLAG_ALLOW_INPUT);
|
||||||
(*list)[list_info->index - 1].ui_type = ST_UI_TYPE_STRING_LINE_EDIT;
|
(*list)[list_info->index - 1].ui_type = ST_UI_TYPE_STRING_LINE_EDIT;
|
||||||
(*list)[list_info->index - 1].action_start = setting_generic_action_start_default;
|
(*list)[list_info->index - 1].action_start = setting_generic_action_start_default;
|
||||||
|
Loading…
x
Reference in New Issue
Block a user