From cd87df088b1850ba0c90beb6c866c443e4eaf3b9 Mon Sep 17 00:00:00 2001 From: Normand Briere <nbriere@noware.ca> Date: Sat, 08 Jun 2019 23:56:42 -0400 Subject: [PATCH] Fix shadow and bump 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