From 8077892b27d186a348bfd571e808fed798caafd7 Mon Sep 17 00:00:00 2001
From: Will Morris <williamdunstanmorris@gmail.com>
Date: Sun, 9 Dec 2018 16:43:55 +0000
Subject: [PATCH] Changed XMin and YMin screen resolution depth

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

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