Skip to content

Commit

Permalink
fixed hiding the purple on deck
Browse files Browse the repository at this point in the history
  • Loading branch information
Unreal-Dan committed Dec 10, 2024
1 parent 3036ab2 commit 68a5463
Showing 1 changed file with 3 additions and 0 deletions.
3 changes: 3 additions & 0 deletions VortexEngine/src/Menus/Menus.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -123,6 +123,9 @@ bool Menus::runMenuSelection()
if (g_pButtonL->onShortClick()) {
// decrement selection and wrap around at num menus
m_selection = m_selection ? m_selection - 1 : NUM_MENUS - 1;
if (m_selection == MENU_EDITOR_CONNECTION) {
m_selection++;
}
DEBUG_LOGF("Cyling backwards to ring menu %u", m_selection);
// reset the open time so that it starts again
m_openTime = Time::getCurtime();
Expand Down

0 comments on commit 68a5463

Please sign in to comment.