Skip to content

Commit 6c87799

Browse files
committed
post merge
1 parent e914417 commit 6c87799

File tree

2 files changed

+5
-5
lines changed

2 files changed

+5
-5
lines changed

wled00/FX.cpp

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -6945,10 +6945,10 @@ uint16_t mode_2DSwirl(void) {
69456945

69466946
SEGMENT.blur(SEGMENT.custom1);
69476947

6948-
int i = beatsin8_t( 27*SEGMENT.speed/255, borderWidth, cols - borderWidth);
6949-
int j = beatsin8_t( 41*SEGMENT.speed/255, borderWidth, rows - borderWidth);
6950-
int ni = (cols - 1) - i;
6951-
int nj = (cols - 1) - j;
6948+
unsigned i = beatsin8_t( 27*SEGMENT.speed/255, borderWidth, cols - borderWidth);
6949+
unsigned j = beatsin8_t( 41*SEGMENT.speed/255, borderWidth, rows - borderWidth);
6950+
unsigned ni = (cols - 1) - i;
6951+
unsigned nj = (cols - 1) - j;
69526952
uint16_t ms = strip.now;
69536953

69546954
um_data_t *um_data = getAudioData();

wled00/wled.h

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,7 @@
88
*/
99

1010
// version code in format yymmddb (b = daily build)
11-
#define VERSION 2411271
11+
#define VERSION 2411290
1212

1313
// 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.
1414
#define _MoonModules_WLED_

0 commit comments

Comments
 (0)