various changes to the generation + some small fixes

This commit is contained in:
Leonardo
2021-09-23 01:05:54 +02:00
parent 00da0e0520
commit c9aed389ae
6 changed files with 149 additions and 100 deletions
@@ -168,8 +168,14 @@ public class GlProxy
public static GlProxy getInstance()
{
if (instance == null)
instance = new GlProxy();
try
{
if (instance == null)
instance = new GlProxy();
}catch (Exception e)
{
e.printStackTrace();
}
return instance;
}