.. | .. |
---|
626 | 626 | |
---|
627 | 627 | System.out.println("jarfile = " + jarfile); |
---|
628 | 628 | |
---|
629 | | - String command = javaPath + " -Xmx1024m -Djava.library.path=" + jarpath; |
---|
| 629 | + String command = javaPath + " -Xmx2048m -Djava.library.path=" + jarpath; |
---|
630 | 630 | |
---|
631 | 631 | // -Djava.library.path=/Users/nbriere/Projects/shared/lib |
---|
632 | 632 | if (jarfile.charAt(2) == ':') |
---|
633 | 633 | { |
---|
634 | | - command = "\"" + javaPath + "\" -Xmx1024m -Djava.library.path=" + jarpath; |
---|
| 634 | + command = "\"" + javaPath + "\" -Xmx2048m -Djava.library.path=" + jarpath; |
---|
635 | 635 | // On Windows systems, the path is /C:/ |
---|
636 | 636 | jarfile = jarfile.substring(1, jarfile.length()); |
---|
637 | 637 | System.out.println("jarfile = " + jarfile); |
---|
.. | .. |
---|
876 | 876 | static int depth = 0; |
---|
877 | 877 | static java.util.Stack stack = new java.util.Stack(); |
---|
878 | 878 | static boolean traceoff = false; // true; |
---|
879 | | - static float[] colorV = new float[5]; |
---|
| 879 | + static float[] colorV = new float[4]; // 5]; |
---|
880 | 880 | |
---|
881 | 881 | static void traceon() |
---|
882 | 882 | { |
---|