aboutsummaryrefslogtreecommitdiff
path: root/apps/mandelbrot.c
diff options
context:
space:
mode:
Diffstat (limited to 'apps/mandelbrot.c')
-rw-r--r--apps/mandelbrot.c4
1 files changed, 3 insertions, 1 deletions
diff --git a/apps/mandelbrot.c b/apps/mandelbrot.c
index dad9100..2414281 100644
--- a/apps/mandelbrot.c
+++ b/apps/mandelbrot.c
@@ -54,9 +54,11 @@ void draw_mandelbrot(struct context *ctx, int resolution)
int main()
{
- print("[mandelbrot context loaded]\n");
+ /* print("[mandelbrot context loaded]\n"); */
struct context ctx = { 0 };
+ ctx.x = 500;
+ ctx.y = 500;
ctx.width = 500;
ctx.height = 300;
gfx_new_ctx(&ctx);