commit 0e924ba579e3649b573af19f1013bfd900925b4d
Author: Leszek Koltunski <leszek@koltunski.pl>
Date:   Fri Mar 2 00:19:09 2018 +0000

    Initialize MessageSender even if compiling some of the programs fails.

diff --git a/src/main/java/org/distorted/library/main/Distorted.java b/src/main/java/org/distorted/library/main/Distorted.java
index 4f5908c..2a755dd 100644
--- a/src/main/java/org/distorted/library/main/Distorted.java
+++ b/src/main/java/org/distorted/library/main/Distorted.java
@@ -122,10 +122,11 @@ public class Distorted
     GLSL = ( (configurationInfo.reqGlEsVersion>>16)>=3 ? 300 : 100 );
     GLSL_VERSION= (GLSL==100 ? "#version 100\n" : "#version 300 es\n");
 
+    EffectMessageSender.startSending();
+
     final Resources resources = context.getResources();
     DistortedEffects.createProgram(resources);
     PostprocessEffect.createPrograms();
-    EffectMessageSender.startSending();
 
     mInitialized = true;
     }
