Skip to content

Commit

Permalink
Merge branch 'master' into chromadeck
Browse files Browse the repository at this point in the history
  • Loading branch information
Unreal-Dan committed Dec 22, 2023
2 parents 51a9803 + a9d0483 commit 0f50d6e
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 3 deletions.
4 changes: 2 additions & 2 deletions VortexEngine/src/Leds/Leds.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -19,10 +19,10 @@
#define MOSFET_PIN 18
#endif

// array of led color values
RGBColor Leds::m_ledColors[LED_COUNT] = { RGB_OFF };
// global brightness
uint8_t Leds::m_brightness = DEFAULT_BRIGHTNESS;
// array of led color values
RGBColor Leds::m_ledColors[LED_COUNT] = { RGB_OFF };

bool Leds::init()
{
Expand Down
2 changes: 1 addition & 1 deletion VortexEngine/src/Menus/Menus.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -20,8 +20,8 @@

// static members
Menus::MenuState Menus::m_menuState = MENU_STATE_NOT_OPEN;
uint32_t Menus::m_openTime = 0;
uint8_t Menus::m_selection = 0;
uint32_t Menus::m_openTime = 0;
Menu *Menus::m_pCurMenu = nullptr;

// typedef for the menu initialization function
Expand Down

0 comments on commit 0f50d6e

Please sign in to comment.