Normand Briere
2019-06-03 e24558ddeacfc945b9e9ba0a32b552d04e2ed4dd
Composite.java
....@@ -205,6 +205,7 @@
205205
206206 boolean HasLoops()
207207 {
208
+ new Exception().printStackTrace();
208209 System.exit(0);
209210 if (blockloop)
210211 {
....@@ -348,6 +349,7 @@
348349
349350 void getBounds0(cVector minima, cVector maxima, boolean xform)
350351 {
352
+ new Exception().printStackTrace();
351353 System.exit(0);
352354 minima.x = minima.y = minima.z = 1E10;
353355 maxima.x = maxima.y = maxima.z = -1E10;
....@@ -864,7 +866,14 @@
864866 tex = GetTextures();
865867 }
866868
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
+ }
868877
869878 if (//true) // new NORMAND
870879 touched || softtouched)