From c58e4969127ce949d4657d23aaac028cedd2c3f8 Mon Sep 17 00:00:00 2001
From: Will Morris <williamdunstanmorris@gmail.com>
Date: Mon, 3 Dec 2018 10:03:28 +0000
Subject: [PATCH] Changed screen coordinates

---
 mandelbrot.c | 4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)

diff --git a/mandelbrot.c b/mandelbrot.c
index cdab641..945d9de 100644
--- a/mandelbrot.c
+++ b/mandelbrot.c
@@ -16,8 +16,8 @@ int main()
 {
          /* screen ( integer) coordinate */
        int iX,iY;
-       const int iXmax = 1500;
-       const int iYmax = 1500;
+       const int iXmax = 4000;
+       const int iYmax = 4000;
        /* world ( double) coordinate = parameter plane*/
        double Cx,Cy;
        const double CxMin=-2.5;
-- 
GitLab