mirror of
https://github.com/ddnet/ddnet.git
synced 2024-11-10 10:08:18 +00:00
Fix background map in settings in 5:4 resolution
This commit is contained in:
parent
d1c0551546
commit
ecc9cbfe99
|
@ -1854,11 +1854,10 @@ void CMenus::RenderSettingsDDRace(CUIRect MainView)
|
||||||
Background.HSplitTop(20.0f, &Background, 0);
|
Background.HSplitTop(20.0f, &Background, 0);
|
||||||
Background.VSplitLeft(100.0f, &Label, &Left);
|
Background.VSplitLeft(100.0f, &Label, &Left);
|
||||||
UI()->DoLabelScaled(&Label, Localize("Map"), 14.0f, -1);
|
UI()->DoLabelScaled(&Label, Localize("Map"), 14.0f, -1);
|
||||||
Left.VSplitLeft(200.0f, &Button, &Left);
|
DoEditBox(g_Config.m_ClBackgroundEntities, &Left, g_Config.m_ClBackgroundEntities, sizeof(g_Config.m_ClBackgroundEntities), 14.0f, &s_Map);
|
||||||
DoEditBox(g_Config.m_ClBackgroundEntities, &Button, g_Config.m_ClBackgroundEntities, sizeof(g_Config.m_ClBackgroundEntities), 14.0f, &s_Map);
|
|
||||||
|
|
||||||
aRects[1].HSplitTop(20.0f, &Button, 0);
|
aRects[1].HSplitTop(20.0f, &Button, 0);
|
||||||
if(DoButton_CheckBox(&g_Config.m_ClBackgroundShowTilesLayers, Localize("Show tiles layers from background map"), g_Config.m_ClBackgroundShowTilesLayers, &Button))
|
if(DoButton_CheckBox(&g_Config.m_ClBackgroundShowTilesLayers, Localize("Show tiles layers from BG map"), g_Config.m_ClBackgroundShowTilesLayers, &Button))
|
||||||
{
|
{
|
||||||
g_Config.m_ClBackgroundShowTilesLayers ^= 1;
|
g_Config.m_ClBackgroundShowTilesLayers ^= 1;
|
||||||
}
|
}
|
||||||
|
|
Loading…
Reference in a new issue