.. | .. |
---|
673 | 673 | PlayWord(word, 1); |
---|
674 | 674 | } |
---|
675 | 675 | |
---|
| 676 | + static boolean isWindows; |
---|
| 677 | + |
---|
676 | 678 | public static void main(String argv[]) |
---|
677 | 679 | { |
---|
678 | 680 | String osArch = System.getProperty("os.arch"); |
---|
.. | .. |
---|
704 | 706 | // -Djava.library.path=/Users/nbriere/Projects/shared/lib |
---|
705 | 707 | if (jarfile.charAt(2) == ':') |
---|
706 | 708 | { |
---|
| 709 | + isWindows = true; |
---|
707 | 710 | command = "\"" + javaPath + "\" -Xmx1024m -Djava.library.path=" + jarpath; |
---|
708 | 711 | // On Windows systems, the path is /C:/ |
---|
709 | 712 | jarfile = jarfile.substring(1, jarfile.length()); |
---|