Skip to content

Commit

Permalink
fixed menu iteration
Browse files Browse the repository at this point in the history
  • Loading branch information
Unreal-Dan committed Dec 13, 2024
1 parent 2a9cfea commit d5212fd
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion VortexEngine/src/Menus/Menus.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -128,7 +128,7 @@ bool Menus::runMenuSelection()
// TODO: Create a better way to hide this menu color, this menu
// will automatically open when the device is plugged in
if (m_selection == MENU_EDITOR_CONNECTION) {
m_selection++;
m_selection = MENU_EDITOR_CONNECTION - 1;
}
#endif
DEBUG_LOGF("Cyling backwards to ring menu %u", m_selection);
Expand Down

0 comments on commit d5212fd

Please sign in to comment.