aboutsummaryrefslogtreecommitdiff
path: root/Minecraft.Client/Windows64/Windows64_Minecraft.cpp
diff options
context:
space:
mode:
authorDetectivEren <55319774+detectiveren@users.noreply.github.com>2026-03-02 23:23:59 +0000
committerGitHub <noreply@github.com>2026-03-03 06:23:59 +0700
commitf731a684229562cf42fb025c9688c3fcd8f4c47d (patch)
tree06d52b59db6bc5693163222cedc2f370ee0bce08 /Minecraft.Client/Windows64/Windows64_Minecraft.cpp
parente888735798291a164a752e06075a8aa2d3e499b3 (diff)
TAB key opens up game info instead of host options (#204)
* TAB key opens up game info instead of host options TAB key opens up game info menu instead of host options menu because the player accesses host options from game info * Update README.md
Diffstat (limited to 'Minecraft.Client/Windows64/Windows64_Minecraft.cpp')
-rw-r--r--Minecraft.Client/Windows64/Windows64_Minecraft.cpp5
1 files changed, 3 insertions, 2 deletions
diff --git a/Minecraft.Client/Windows64/Windows64_Minecraft.cpp b/Minecraft.Client/Windows64/Windows64_Minecraft.cpp
index 743da44b..95c10a2b 100644
--- a/Minecraft.Client/Windows64/Windows64_Minecraft.cpp
+++ b/Minecraft.Client/Windows64/Windows64_Minecraft.cpp
@@ -1321,13 +1321,14 @@ int APIENTRY _tWinMain(_In_ HINSTANCE hInstance,
ToggleFullscreen();
}
- // TAB opens host options menu. - Vvis :3
+ // TAB opens game info menu. - Vvis :3 - Updated by detectiveren
if (KMInput.IsKeyPressed(VK_TAB) && !ui.GetMenuDisplayed(0))
{
if (Minecraft* pMinecraft = Minecraft::GetInstance())
{
{
- ui.NavigateToScene(0, eUIScene_InGameHostOptionsMenu);
+ ui.NavigateToScene(0, eUIScene_InGameInfoMenu);
+
}
}
}