From 79d0f9a45d36656051a77a7b0837aa0318f81ee5 Mon Sep 17 00:00:00 2001 From: Normand Briere <nbriere@noware.ca> Date: Sun, 09 Jun 2019 11:23:18 -0400 Subject: [PATCH] Undo/redo --- 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