aboutsummaryrefslogtreecommitdiff
path: root/mbrot.c
diff options
context:
space:
mode:
Diffstat (limited to 'mbrot.c')
-rw-r--r--mbrot.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/mbrot.c b/mbrot.c
index 55562c0..fb7d668 100644
--- a/mbrot.c
+++ b/mbrot.c
@@ -8,6 +8,7 @@ void *generate_mbrot_section(void *section)
double a,b;
double complex z,c;
+
for (y = d->core, b = (d->core*(3.5f/d->size)-1.75f); y < d->size; b+=((d->cores*3.5f)/d->size), y+=d->cores)
{
for (x = 0, a = -2.5f; x < d->size; a+=(3.5f/d->size), x++)
@@ -21,7 +22,6 @@ void *generate_mbrot_section(void *section)
z = cpow(z, d->power)+c;
}
-
d->data[idx++] = (255*i)/d->iterat;
}
}