From 989407a46041b80c71fd906bff6b97528e6f3350 Mon Sep 17 00:00:00 2001 From: Normand Briere <nbriere@noware.ca> Date: Sat, 08 Jun 2019 23:58:21 -0400 Subject: [PATCH] Fix ZIP issue --- Composite.java | 9 ++++++++- 1 files changed, 8 insertions(+), 1 deletions(-) diff --git a/Composite.java b/Composite.java index bffa912..1d9e036 100644 --- a/Composite.java +++ b/Composite.java @@ -866,7 +866,14 @@ tex = GetTextures(); } - display.BindTextures(tex, texres); + try + { + display.BindTextures(tex, texres); + } + catch (Exception e) + { + System.err.println("FAILED: " + this); + } if (//true) // new NORMAND touched || softtouched) -- Gitblit v1.6.2