From 0512d0de5684ae2bb4f726896974d2e284071db8 Mon Sep 17 00:00:00 2001 From: Dan Date: Fri, 22 Dec 2023 15:54:46 -0800 Subject: [PATCH] idk --- VortexEngine/src/Leds/Leds.cpp | 4 ++-- VortexEngine/src/Menus/Menus.cpp | 2 +- 2 files changed, 3 insertions(+), 3 deletions(-) diff --git a/VortexEngine/src/Leds/Leds.cpp b/VortexEngine/src/Leds/Leds.cpp index 1454fcdcf7..eae09160e2 100644 --- a/VortexEngine/src/Leds/Leds.cpp +++ b/VortexEngine/src/Leds/Leds.cpp @@ -12,10 +12,10 @@ #include "../../VortexLib/VortexLib.h" #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() { diff --git a/VortexEngine/src/Menus/Menus.cpp b/VortexEngine/src/Menus/Menus.cpp index 2e6312faca..a5c2ba45ed 100644 --- a/VortexEngine/src/Menus/Menus.cpp +++ b/VortexEngine/src/Menus/Menus.cpp @@ -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