mirror of
https://github.com/smartcmd/MinecraftConsoles.git
synced 2026-05-20 05:23:51 +00:00
Allow TAB to open host options (#97)
This commit is contained in:
parent
5b5b9f6072
commit
75bf7ee54a
2 changed files with 12 additions and 0 deletions
|
|
@ -1220,6 +1220,17 @@ int APIENTRY _tWinMain(_In_ HINSTANCE hInstance,
|
|||
ToggleFullscreen();
|
||||
}
|
||||
|
||||
// TAB opens host options menu. - Vvis :3
|
||||
if (KMInput.IsKeyPressed(VK_TAB))
|
||||
{
|
||||
if (Minecraft* pMinecraft = Minecraft::GetInstance())
|
||||
{
|
||||
{
|
||||
ui.NavigateToScene(0, eUIScene_InGameHostOptionsMenu);
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
#if 0
|
||||
// has the game defined profile data been changed (by a profile load)
|
||||
if(app.uiGameDefinedDataChangedBitmask!=0)
|
||||
|
|
|
|||
|
|
@ -33,6 +33,7 @@ This project contains the source code of Minecraft Legacy Console Edition v1.3.0
|
|||
- **Attack / Destroy**: `Left Click`
|
||||
- **Use / Place**: `Right Click`
|
||||
- **Select Item**: `Mouse Wheel` or keys `1` to `9`
|
||||
- **Host Options**: `TAB`
|
||||
|
||||
## Build & Run
|
||||
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue