.. | .. |
---|
205 | 205 | |
---|
206 | 206 | boolean HasLoops() |
---|
207 | 207 | { |
---|
| 208 | + new Exception().printStackTrace(); |
---|
208 | 209 | System.exit(0); |
---|
209 | 210 | if (blockloop) |
---|
210 | 211 | { |
---|
.. | .. |
---|
348 | 349 | |
---|
349 | 350 | void getBounds0(cVector minima, cVector maxima, boolean xform) |
---|
350 | 351 | { |
---|
| 352 | + new Exception().printStackTrace(); |
---|
351 | 353 | System.exit(0); |
---|
352 | 354 | minima.x = minima.y = minima.z = 1E10; |
---|
353 | 355 | maxima.x = maxima.y = maxima.z = -1E10; |
---|
.. | .. |
---|
864 | 866 | tex = GetTextures(); |
---|
865 | 867 | } |
---|
866 | 868 | |
---|
867 | | - display.BindTextures(tex, texres); |
---|
| 869 | + try |
---|
| 870 | + { |
---|
| 871 | + display.BindTextures(tex, texres); |
---|
| 872 | + } |
---|
| 873 | + catch (Exception e) |
---|
| 874 | + { |
---|
| 875 | + System.err.println("FAILED: " + this); |
---|
| 876 | + } |
---|
868 | 877 | |
---|
869 | 878 | if (//true) // new NORMAND |
---|
870 | 879 | touched || softtouched) |
---|