Merge pull request #4428 from blazoncek/waterfall-fix

FX: Waterfall, Matripix & Dissolve fix
This commit is contained in:
netmindz
2025-01-16 15:52:21 +00:00
committed by Blaž Kristan
parent f593d404cb
commit dc3d463925
2 changed files with 3 additions and 3 deletions

View File

@@ -612,7 +612,7 @@ uint16_t dissolve(uint32_t color) {
for (int j = 0; j <= SEGLEN / 15; j++) {
if (random8() <= SEGMENT.intensity) {
for (size_t times = 0; times < 10; times++) { //attempt to spawn a new pixel 10 times
unsigned i = random16(SEGLEN);
unsigned i = hw_random16(SEGLEN);
if (SEGENV.aux0) { //dissolve to primary/palette
if (pixels[i] == SEGCOLOR(1)) {
pixels[i] = color == SEGCOLOR(0) ? SEGMENT.color_from_palette(i, true, PALETTE_SOLID_WRAP, 0) : color;