X-Git-Url: http://git.itanic.dy.fi/?p=mandelbrot;a=blobdiff_plain;f=mandelbrot.c;fp=mandelbrot.c;h=06e0a743b54d265223766a01131cf614e17b387e;hp=5dc9aed7f65f8054cc8161e09f874f453d4add28;hb=024dd9cad678c07057f58d43024b0d4bd5b3c7af;hpb=174797b4eb1de681f5ce369341e838f217254802 diff --git a/mandelbrot.c b/mandelbrot.c index 5dc9aed..06e0a74 100644 --- a/mandelbrot.c +++ b/mandelbrot.c @@ -168,7 +168,7 @@ static void loop(struct context *ctx) x2 = ctx->origo_x + aspect_ratio / ctx->zoom; y1 = ctx->origo_y - 1 / ctx->zoom; y2 = ctx->origo_y + 1 / ctx->zoom; - printf("Drawing area (%f, %f)(%f, %f), zoom %d\n", + printf("Drawing area (%LF, %LF)(%LF, %LF), zoom %d\n", x1, y1, x2, y2, ctx->zooms); draw_mandelbrot(ctx->screen, x1, x2, y1, y2); } while (!read_events(ctx));