From fd98e2925873de6d4f89f6f3c1e84cebee5e6824 Mon Sep 17 00:00:00 2001
From: Will Morris <williamdunstanmorris@gmail.com>
Date: Mon, 3 Dec 2018 10:04:43 +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 945d9de..cdcc525 100644
--- a/mandelbrot.c
+++ b/mandelbrot.c
@@ -16,8 +16,8 @@ int main()
 {
          /* screen ( integer) coordinate */
        int iX,iY;
-       const int iXmax = 4000;
-       const int iYmax = 4000;
+       const int iXmax = 8000;
+       const int iYmax = 8000;
        /* world ( double) coordinate = parameter plane*/
        double Cx,Cy;
        const double CxMin=-2.5;
-- 
GitLab