mirror of
https://github.com/smartcmd/MinecraftConsoles.git
synced 2026-05-10 15:59:58 +00:00
Fixed issue 109 with tab menu (#116)
This commit is contained in:
parent
e15bd26917
commit
d6ec138710
|
|
@ -313,6 +313,10 @@ bool UILayer::NavigateToScene(int iPad, EUIScene scene, void *initData)
|
|||
newScene = new UIScene_InGameInfoMenu(iPad, initData, this);
|
||||
break;
|
||||
case eUIScene_InGameHostOptionsMenu:
|
||||
if (IsSceneInStack(eUIScene_InGameHostOptionsMenu)) {
|
||||
app.DebugPrintf("Skipped eUIScene_InGameHostOptionsMenu, we have already this tab!");
|
||||
return false;
|
||||
}
|
||||
newScene = new UIScene_InGameHostOptionsMenu(iPad, initData, this);
|
||||
break;
|
||||
case eUIScene_InGamePlayerOptionsMenu:
|
||||
|
|
|
|||
Loading…
Reference in a new issue