Skip to content

Commit

Permalink
post merge
Browse files Browse the repository at this point in the history
  • Loading branch information
softhack007 committed Nov 28, 2024
1 parent e914417 commit 6c87799
Show file tree
Hide file tree
Showing 2 changed files with 5 additions and 5 deletions.
8 changes: 4 additions & 4 deletions wled00/FX.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -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();
Expand Down
2 changes: 1 addition & 1 deletion wled00/wled.h
Original file line number Diff line number Diff line change
Expand Up @@ -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_
Expand Down

0 comments on commit 6c87799

Please sign in to comment.