Skip to content

Commit

Permalink
Fix oversight in Tricolor
Browse files Browse the repository at this point in the history
Signed-off-by: Evy Bongers <[email protected]>
  • Loading branch information
EvyBongers committed Feb 25, 2024
1 parent dd93a06 commit b08125e
Showing 1 changed file with 2 additions and 2 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -26,8 +26,8 @@
namespace kaleidoscope {
namespace plugin {

TriColor::TriColor(__FlashStringHelper *customName, cRGB base_color, cRGB mod_color, cRGB esc_color) {
ledModeName = customName;
TriColor::TriColor(const __FlashStringHelper *_ledModeName, cRGB base_color, cRGB mod_color, cRGB esc_color) {
ledModeName = _ledModeName;
base_color_ = base_color;
mod_color_ = mod_color;
esc_color_ = esc_color;
Expand Down

0 comments on commit b08125e

Please sign in to comment.