Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 3 additions & 1 deletion Minecraft.Client/Common/UI/UIScene_DeathMenu.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -81,6 +81,8 @@ void UIScene_DeathMenu::handleInput(int iPad, int key, bool repeat, bool pressed

void UIScene_DeathMenu::handlePress(F64 controlId, F64 childId)
{
ui.PlayUISFX(eSFX_Press);

switch(static_cast<int>(controlId))
{
case eControl_Respawn:
Expand Down Expand Up @@ -188,4 +190,4 @@ void UIScene_DeathMenu::handlePress(F64 controlId, F64 childId)
}
break;
}
}
}
2 changes: 2 additions & 0 deletions Minecraft.Client/Common/UI/UIScene_DebugOverlay.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -183,6 +183,8 @@ void UIScene_DebugOverlay::handleInput(int iPad, int key, bool repeat, bool pres

void UIScene_DebugOverlay::handlePress(F64 controlId, F64 childId)
{
ui.PlayUISFX(eSFX_Press);

switch(static_cast<int>(controlId))
{
case eControl_Items:
Expand Down
2 changes: 2 additions & 0 deletions Minecraft.Client/Common/UI/UIScene_HelpAndOptionsMenu.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -207,6 +207,8 @@ void UIScene_HelpAndOptionsMenu::handleInput(int iPad, int key, bool repeat, boo

void UIScene_HelpAndOptionsMenu::handlePress(F64 controlId, F64 childId)
{
ui.PlayUISFX(eSFX_Press);

switch(static_cast<int>(controlId))
{
case BUTTON_HAO_CHANGESKIN:
Expand Down
4 changes: 3 additions & 1 deletion Minecraft.Client/Common/UI/UIScene_PauseMenu.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -504,6 +504,8 @@ void UIScene_PauseMenu::handleInput(int iPad, int key, bool repeat, bool pressed

void UIScene_PauseMenu::handlePress(F64 controlId, F64 childId)
{
ui.PlayUISFX(eSFX_Press);

if(m_bIgnoreInput) return;

switch(static_cast<int>(controlId))
Expand Down Expand Up @@ -1478,4 +1480,4 @@ bool UIScene_PauseMenu::CheckForPatch()

return bPatchAvailable;
}
#endif
#endif
Loading