From 7d585c56ac125059938af38ea061948db3af1525 Mon Sep 17 00:00:00 2001 From: Spence Konde Date: Sun, 1 Oct 2023 12:44:45 -0400 Subject: [PATCH] fix initializer order --- megaavr/libraries/tinyNeoPixel/tinyNeoPixel.cpp | 5 ++--- 1 file changed, 2 insertions(+), 3 deletions(-) diff --git a/megaavr/libraries/tinyNeoPixel/tinyNeoPixel.cpp b/megaavr/libraries/tinyNeoPixel/tinyNeoPixel.cpp index 1fba1f42..e87045a0 100644 --- a/megaavr/libraries/tinyNeoPixel/tinyNeoPixel.cpp +++ b/megaavr/libraries/tinyNeoPixel/tinyNeoPixel.cpp @@ -50,7 +50,7 @@ // Constructor when length, pin and type are known at compile-time: tinyNeoPixel::tinyNeoPixel(uint16_t n, uint8_t p, neoPixelType t) : - begun(false), brightness(0), pixels(NULL), latchTime(50), endTime(0) { + begun(false), latchTime(50), brightness(0), pixels(NULL), endTime(0) { updateType(t); updateLength(n); setPin(p); @@ -62,8 +62,7 @@ tinyNeoPixel::tinyNeoPixel(uint16_t n, uint8_t p, neoPixelType t) : // command. If using this constructor, MUST follow up with updateType(), // updateLength(), etc. to establish the strand type, length and pin number! tinyNeoPixel::tinyNeoPixel() : - begun(false), numLEDs(0), numBytes(0), pin(NOT_A_PIN), brightness(0), pixels(NULL), - rOffset(1), gOffset(0), bOffset(2), wOffset(1), latchTime(50), endTime(0) { + begun(false), numLEDs(0), numBytes(0), latchTime(50), pin(NOT_A_PIN), brightness(0), pixels(NULL), rOffset(1), gOffset(0), bOffset(2), wOffset(1), endTime(0) { } tinyNeoPixel::~tinyNeoPixel() {