Normand Briere
2019-07-27 1af7d3700724834e40ad8636bc9a56cdc3b19b15
Grafreed.java
....@@ -626,12 +626,12 @@
626626
627627 System.out.println("jarfile = " + jarfile);
628628
629
- String command = javaPath + " -Xmx1024m -Djava.library.path=" + jarpath;
629
+ String command = javaPath + " -Xmx2048m -Djava.library.path=" + jarpath;
630630
631631 // -Djava.library.path=/Users/nbriere/Projects/shared/lib
632632 if (jarfile.charAt(2) == ':')
633633 {
634
- command = "\"" + javaPath + "\" -Xmx1024m -Djava.library.path=" + jarpath;
634
+ command = "\"" + javaPath + "\" -Xmx2048m -Djava.library.path=" + jarpath;
635635 // On Windows systems, the path is /C:/
636636 jarfile = jarfile.substring(1, jarfile.length());
637637 System.out.println("jarfile = " + jarfile);
....@@ -876,7 +876,7 @@
876876 static int depth = 0;
877877 static java.util.Stack stack = new java.util.Stack();
878878 static boolean traceoff = false; // true;
879
- static float[] colorV = new float[5];
879
+ static float[] colorV = new float[4]; // 5];
880880
881881 static void traceon()
882882 {