aboutsummaryrefslogtreecommitdiff
path: root/Minecraft.Client/Common/UI/UIScene_LoadOrJoinMenu.h
diff options
context:
space:
mode:
authorMatthew Toro <48634881+mattsumi@users.noreply.github.com>2026-03-17 15:45:22 -0400
committerGitHub <noreply@github.com>2026-03-17 15:45:22 -0400
commita5f5595c63d61299c199b7aa06eb5f0b45860216 (patch)
tree19554d9db5f96a41b389454329d8ddb6867d9a61 /Minecraft.Client/Common/UI/UIScene_LoadOrJoinMenu.h
parentdc8af13b4596bcfda8081bcc4401778909456ea3 (diff)
parent994a23f96b9ed247fa504486982b5eb64394a297 (diff)
Merge pull request #1315 from dognews/main
LoadJoinMenu UI Bug Fix: Properly display space indicator, remove label placeholder [BUG: #1004]
Diffstat (limited to 'Minecraft.Client/Common/UI/UIScene_LoadOrJoinMenu.h')
-rw-r--r--Minecraft.Client/Common/UI/UIScene_LoadOrJoinMenu.h6
1 files changed, 3 insertions, 3 deletions
diff --git a/Minecraft.Client/Common/UI/UIScene_LoadOrJoinMenu.h b/Minecraft.Client/Common/UI/UIScene_LoadOrJoinMenu.h
index 9f5fe17f..76a7ed43 100644
--- a/Minecraft.Client/Common/UI/UIScene_LoadOrJoinMenu.h
+++ b/Minecraft.Client/Common/UI/UIScene_LoadOrJoinMenu.h
@@ -20,7 +20,7 @@ private:
{
eControl_SavesList,
eControl_GamesList,
-#if defined(_XBOX_ONE) || defined(__ORBIS__)
+#if defined(_XBOX_ONE) || defined(__ORBIS__) || defined(_WINDOWS64)
eControl_SpaceIndicator,
#endif
};
@@ -52,7 +52,7 @@ protected:
UIControl_SaveList m_buttonListGames;
UIControl_Label m_labelSavesListTitle, m_labelJoinListTitle, m_labelNoGames;
UIControl m_controlSavesTimer, m_controlJoinTimer;
-#if defined(_XBOX_ONE) || defined(__ORBIS__)
+#if defined(_XBOX_ONE) || defined(__ORBIS__) || defined(_WINDOWS64)
UIControl_SpaceIndicatorBar m_spaceIndicatorSaves;
#endif
@@ -68,7 +68,7 @@ private:
UI_MAP_ELEMENT( m_controlSavesTimer, "SavesTimer")
UI_MAP_ELEMENT( m_controlJoinTimer, "JoinTimer")
-#if defined(_XBOX_ONE) || defined(__ORBIS__)
+#if defined(_XBOX_ONE) || defined(__ORBIS__) || defined(_WINDOWS64)
UI_MAP_ELEMENT( m_spaceIndicatorSaves, "SaveSizeBar")
#endif
UI_END_MAP_ELEMENTS_AND_NAMES()