mirror of
https://github.com/ddnet/ddnet.git
synced 2024-11-10 01:58:19 +00:00
Fix typo in internal name of cl_assets_entities
config variable
The name used in config is unchanged.
This commit is contained in:
parent
943f98dc92
commit
98b3fe460a
|
@ -40,7 +40,7 @@ MACRO_CONFIG_INT(ClPrintBroadcasts, cl_print_broadcasts, 1, 0, 1, CFGFLAG_CLIENT
|
|||
MACRO_CONFIG_INT(ClPrintMotd, cl_print_motd, 1, 0, 1, CFGFLAG_CLIENT | CFGFLAG_SAVE, "Print motd to console")
|
||||
MACRO_CONFIG_INT(ClFriendsIgnoreClan, cl_friends_ignore_clan, 1, 0, 1, CFGFLAG_CLIENT | CFGFLAG_SAVE, "Ignore clan tag when searching for friends")
|
||||
|
||||
MACRO_CONFIG_STR(ClAssetsEntites, cl_assets_entities, 50, "default", CFGFLAG_SAVE | CFGFLAG_CLIENT, "The asset/assets for entities")
|
||||
MACRO_CONFIG_STR(ClAssetsEntities, cl_assets_entities, 50, "default", CFGFLAG_SAVE | CFGFLAG_CLIENT, "The asset/assets for entities")
|
||||
MACRO_CONFIG_STR(ClAssetGame, cl_asset_game, 50, "default", CFGFLAG_SAVE | CFGFLAG_CLIENT, "The asset for game")
|
||||
MACRO_CONFIG_STR(ClAssetEmoticons, cl_asset_emoticons, 50, "default", CFGFLAG_SAVE | CFGFLAG_CLIENT, "The asset for emoticons")
|
||||
MACRO_CONFIG_STR(ClAssetParticles, cl_asset_particles, 50, "default", CFGFLAG_SAVE | CFGFLAG_CLIENT, "The asset for particles")
|
||||
|
|
|
@ -46,11 +46,11 @@ void CMapImages::OnInit()
|
|||
{
|
||||
InitOverlayTextures();
|
||||
|
||||
if(str_comp(g_Config.m_ClAssetsEntites, "default") == 0)
|
||||
if(str_comp(g_Config.m_ClAssetsEntities, "default") == 0)
|
||||
str_copy(m_aEntitiesPath, "editor/entities_clear");
|
||||
else
|
||||
{
|
||||
str_format(m_aEntitiesPath, sizeof(m_aEntitiesPath), "assets/entities/%s", g_Config.m_ClAssetsEntites);
|
||||
str_format(m_aEntitiesPath, sizeof(m_aEntitiesPath), "assets/entities/%s", g_Config.m_ClAssetsEntities);
|
||||
}
|
||||
}
|
||||
|
||||
|
|
|
@ -309,7 +309,7 @@ void CMenus::ClearCustomItems(int CurTab)
|
|||
m_vEntitiesList.clear();
|
||||
|
||||
// reload current entities
|
||||
m_pClient->m_MapImages.ChangeEntitiesPath(g_Config.m_ClAssetsEntites);
|
||||
m_pClient->m_MapImages.ChangeEntitiesPath(g_Config.m_ClAssetsEntities);
|
||||
}
|
||||
else if(CurTab == ASSETS_TAB_GAME)
|
||||
{
|
||||
|
@ -545,7 +545,7 @@ void CMenus::RenderSettingsCustom(CUIRect MainView)
|
|||
|
||||
if(s_CurCustomTab == ASSETS_TAB_ENTITIES)
|
||||
{
|
||||
if(str_comp(pItem->m_aName, g_Config.m_ClAssetsEntites) == 0)
|
||||
if(str_comp(pItem->m_aName, g_Config.m_ClAssetsEntities) == 0)
|
||||
OldSelected = i;
|
||||
}
|
||||
else if(s_CurCustomTab == ASSETS_TAB_GAME)
|
||||
|
@ -604,7 +604,7 @@ void CMenus::RenderSettingsCustom(CUIRect MainView)
|
|||
{
|
||||
if(s_CurCustomTab == ASSETS_TAB_ENTITIES)
|
||||
{
|
||||
str_copy(g_Config.m_ClAssetsEntites, GetCustomItem(s_CurCustomTab, NewSelected)->m_aName);
|
||||
str_copy(g_Config.m_ClAssetsEntities, GetCustomItem(s_CurCustomTab, NewSelected)->m_aName);
|
||||
m_pClient->m_MapImages.ChangeEntitiesPath(GetCustomItem(s_CurCustomTab, NewSelected)->m_aName);
|
||||
}
|
||||
else if(s_CurCustomTab == ASSETS_TAB_GAME)
|
||||
|
@ -708,7 +708,7 @@ void CMenus::ConchainAssetsEntities(IConsole::IResult *pResult, void *pUserData,
|
|||
if(pResult->NumArguments() == 1)
|
||||
{
|
||||
const char *pArg = pResult->GetString(0);
|
||||
if(str_comp(pArg, g_Config.m_ClAssetsEntites) != 0)
|
||||
if(str_comp(pArg, g_Config.m_ClAssetsEntities) != 0)
|
||||
{
|
||||
pThis->m_pClient->m_MapImages.ChangeEntitiesPath(pArg);
|
||||
}
|
||||
|
|
Loading…
Reference in a new issue