Skip to content

Commit

Permalink
Merge branch 'master' into handle
Browse files Browse the repository at this point in the history
  • Loading branch information
Unreal-Dan committed Dec 21, 2023
2 parents 4c5a926 + b282b83 commit ac08211
Show file tree
Hide file tree
Showing 2 changed files with 5 additions and 2 deletions.
1 change: 1 addition & 0 deletions VortexEngine/src/Menus/Menu.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -10,6 +10,7 @@
#include "../Log/Log.h"

Menu::Menu(const RGBColor &col, bool advanced) :
m_previewMode(),
m_menuColor(col),
m_targetLeds(MAP_LED_ALL),
m_curSelection(0),
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,8 @@
SequencedPattern::SequencedPattern(const PatternArgs &args) :
CompoundPattern(args),
m_sequence(),
m_curSequence(0)
m_curSequence(0),
m_timer()
{
// SequencedPattern is an abstract class it cannot be directly
// instantiated so we do not need to assign a pattern id
Expand All @@ -21,7 +22,8 @@ SequencedPattern::SequencedPattern(const PatternArgs &args) :
SequencedPattern::SequencedPattern(const PatternArgs &args, const Sequence &sequence) :
CompoundPattern(args),
m_sequence(sequence),
m_curSequence(0)
m_curSequence(0),
m_timer()
{
// SequencedPattern is an abstract class it cannot be directly
// instantiated so we do not need to assign a pattern id
Expand Down

0 comments on commit ac08211

Please sign in to comment.