Skip to content

Commit

Permalink
Merge branch 'master' into duo
Browse files Browse the repository at this point in the history
  • Loading branch information
Unreal-Dan committed Dec 12, 2023
2 parents b94be49 + e03802c commit dd6a237
Showing 1 changed file with 7 additions and 0 deletions.
7 changes: 7 additions & 0 deletions VortexEngine/src/Menus/MenuList/Randomizer.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -138,6 +138,13 @@ void Randomizer::onLongClick()

bool Randomizer::reRoll()
{
#if VORTEX_SLIM == 0
if (m_targetLeds == MAP_LED(LED_MULTI)) {
if (!reRollMulti()) {
return false;
}
}
#endif
if (!reRollSingles()) {
return false;
}
Expand Down

0 comments on commit dd6a237

Please sign in to comment.