post merge

This commit is contained in:
Frank
2024-11-29 00:48:27 +01:00
parent e914417c74
commit 6c87799ce5
2 changed files with 5 additions and 5 deletions

View File

@@ -6945,10 +6945,10 @@ uint16_t mode_2DSwirl(void) {
SEGMENT.blur(SEGMENT.custom1);
int i = beatsin8_t( 27*SEGMENT.speed/255, borderWidth, cols - borderWidth);
int j = beatsin8_t( 41*SEGMENT.speed/255, borderWidth, rows - borderWidth);
int ni = (cols - 1) - i;
int nj = (cols - 1) - j;
unsigned i = beatsin8_t( 27*SEGMENT.speed/255, borderWidth, cols - borderWidth);
unsigned j = beatsin8_t( 41*SEGMENT.speed/255, borderWidth, rows - borderWidth);
unsigned ni = (cols - 1) - i;
unsigned nj = (cols - 1) - j;
uint16_t ms = strip.now;
um_data_t *um_data = getAudioData();

View File

@@ -8,7 +8,7 @@
*/
// 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.
#define _MoonModules_WLED_