@Christoph-Hart Coming back after checking the stability on a longer period, and I can confirm that I narrowed it down to this.
As soon as I uncomment this:
const var dummyPath1 = Content.createPath();
dummyPath1.startNewSubPath(0,0);
dummyPath1.startNewSubPath(1,1);
dummyPath1.addRectangle([0.2,0.2,0.6,0.6]);
const var dummyPath2 = Content.createPath();
dummyPath2.startNewSubPath(0,0);
dummyPath2.startNewSubPath(1,1);
dummyPath2.addEllipse([0.2,0.2,0.6,0.6]);
presetBrowser_LAF.registerFunction("createPresetBrowserIcons", function(id)
{
if (id == "favorite_on")
return dummyPath1;
else if (id == "favorite_off")
return dummyPath2;
});
Hise crashes very often at compile
Git issue:
https://github.com/christophhart/HISE/issues/686