post merge
This commit is contained in:
@@ -6945,10 +6945,10 @@ uint16_t mode_2DSwirl(void) {
|
|||||||
|
|
||||||
SEGMENT.blur(SEGMENT.custom1);
|
SEGMENT.blur(SEGMENT.custom1);
|
||||||
|
|
||||||
int i = beatsin8_t( 27*SEGMENT.speed/255, borderWidth, cols - borderWidth);
|
unsigned i = beatsin8_t( 27*SEGMENT.speed/255, borderWidth, cols - borderWidth);
|
||||||
int j = beatsin8_t( 41*SEGMENT.speed/255, borderWidth, rows - borderWidth);
|
unsigned j = beatsin8_t( 41*SEGMENT.speed/255, borderWidth, rows - borderWidth);
|
||||||
int ni = (cols - 1) - i;
|
unsigned ni = (cols - 1) - i;
|
||||||
int nj = (cols - 1) - j;
|
unsigned nj = (cols - 1) - j;
|
||||||
uint16_t ms = strip.now;
|
uint16_t ms = strip.now;
|
||||||
|
|
||||||
um_data_t *um_data = getAudioData();
|
um_data_t *um_data = getAudioData();
|
||||||
|
|||||||
@@ -8,7 +8,7 @@
|
|||||||
*/
|
*/
|
||||||
|
|
||||||
// version code in format yymmddb (b = daily build)
|
// version code in format yymmddb (b = daily build)
|
||||||
#define VERSION 2411271
|
#define VERSION 2411290
|
||||||
|
|
||||||
// WLEDMM - you can check for this define in usermods, to only enabled WLEDMM specific code in the "right" fork. Its not defined in AC WLED.
|
// WLEDMM - you can check for this define in usermods, to only enabled WLEDMM specific code in the "right" fork. Its not defined in AC WLED.
|
||||||
#define _MoonModules_WLED_
|
#define _MoonModules_WLED_
|
||||||
|
|||||||
Reference in New Issue
Block a user